Hello,

Is it possible to call a javascript function from within vbscript and if so, how do I do it??

I have something like this...

<%
some code in here and from here I want to call a javascript function called test
%>

<script language="javascript">

function test()
{
some code in here
}

</script>

T