I want to change a parameter in vbs, by injecting a js parameter
<script language="javascript">
x=innerHeight;
y=innerWidth;
A="x="
B=String.fromCharCode(60,37);
C=String.fromCharCode(37,62);
T=B+A+x+C
document.write (T)
</script>
<body>
<div name="fish" class="fish"><img src="/images/fish.gif"
height="<%=x/4%>"></div>
But this puts <%x=value%> on the screen, instead of being undesrtood by
vbs
any ideas?