dear sirs

I have an asp page but unfortunently i cannot find a way to run it correctly!

My page is playing normally if i have only ASP CODE inside , but now i wanna include JavaScript server Side Executions!
So how i would do that? for example i have!

:: profile.asp


<%option explicit%>

<!-- #INCLUDE FILE="settings.asp" -->

<html>
<head>
<title>:: CitySightseeing.gr - Profile ::</title>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1253">
<script language="javascript">AC_FL_RunContent = 0;</script>
...
...
</table>
</td>
</tr>
</table>
<script type="text/javascript">
var t = new ScrollableTable(document.getElementById('myScrollTable'), 175);
</script>

</body>
</html>
and now i would like to add the the AspSimpleSearch Script from BlurSoftware which is free!..but! it run with strange commands! let's see their example.

<%@Language=JavaScript%>
<!--#include file="ass-engine.asp" -->
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>ASPSimpleSearch</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<meta name="cache-control" content="no-cache">
<meta name="document-state" content="dynamic">
<meta name="robots" content="none">
<!--
// ASPSimpleSearch
// http://blursoftware.com/ASPSimpleSearch/
// Copyright (C) 2001,2002 Joel Coreson
-->
<!--#include file="ass-client-side.js.asp" -->
<link rel="stylesheet" type="text/css" href="ass-style.css">
</head>
<body>

<form action="search-g.asp" method="get" onSubmit="return isSearchTermValid( this );">
<input type="text" name="searchTerm" size="25" maxlength="35" value="<%=gobj_searchTerm.outputSafeTerm%>">
<input type="submit" name="Submit" value="Search">
</form>

<%
//This function displays any error messages that occur.
writeMsg();

//This function displays the results
//Place this where ever you would like the results to be displayed.
displayResults();
%>

<p><a href="http://validator.w3.org/check/referer"><img border="0" src="http://www.w3.org/Icons/valid-html401" alt="Valid HTML 4.01!" height="31" width="88"></a></p>

</body>
</html>


Ok my question is that! HOW i sould run BOTH asp and JavaScript in my file ? when i start up with <%@Language=JavaScript%> i cannot use the <%option explicit%> is there any way to run the script ? i cannot include in my code the <!--#include file="ass-engine.asp" --> line! when i put it.. i get an error!!! (


thank you