Yes, they have to be using ASP. You need to do something like this:
<script language=javascript>
function openMe()
{
window.open('page.asp');
}
</script>
<input type="button" onClick="openMe();">
Also, since the data you want to pass along to the new window is stored in Session, you should be able to access your session objects on the popup page *UNLESS* the window you are opening is on another domain.
In any case you could alter the method to something like:
<%
Dim sURL
sURL = "page.asp?gender=" & CStr(Session("gender")) & "&job=" & CStr(Session("job_category"))
%>
<script language=javascript>
function openMe(url)
{
window.open(url);
}
</script>
<input type="button" onClick="openMe(<%=sURL%>);">
================================================== =========
Read this if you want to know how to get a correct reply for your question:
http://www.catb.org/~esr/faqs/smart-questions.html
================================================== =========
Technical Editor for:
Professional Search Engine Optimization with ASP.NET
http://www.wiley.com/WileyCDA/WileyT...470131470.html
================================================== =========
Why can't Programmers, program??
http://www.codinghorror.com/blog/archives/000781.html
================================================== =========