Yogesh,<br> I'm not sure I understand your question exactly, but if you want to retrieve values on the server using VBscript, and have them available on the client to use with Javascript, this is how. If not, please rephrase your question.<br><br><%<br>dim MyVBscriptValue<br>MyVBscriptValue = "4"<br>response.write "<SCRIPT language='Javascript'>" & vbcrlf<br>response.write "var MyJavascriptVarable = " & MyVBscriptValue & ";" & vbcrlf<br>response.write "</SCRIPT>" & vbcrlf<br>%><br><br>I'd suggest doing this inside the <HEAD></HEAD> tags.<br><br>Then the variable MyJavascriptVariable will contain an inital value of 4, and will be available to all scripts on the client side.<br><br> <p>nick bulka<br><a href=mailto: > </a><br><a href= > </a><br>