Redirecting Page

wxdqz

New Member
hello...

I have put together an HTML page that will capture environmental information, save it and then forward the end user to another page...

Everything works great... except... for some reason I can't get the forwarding the other user to the next page to work...

==========================================

<html>
<head>
</head>
<body>

<script language="javascript" type="text/javascript">

querystring = window.location.search;
querystring = querystring.split("&");
part1 = querystring[0];
part1 = part1.split("=")
part2 = querystring[1];
part2 = part2.split("=");
part3 = querystring[2];
part3 = part3.split("=");
document.write ("Table is "+part1[1]);
document.write ("<br>");
document.write ("CUID is "+part2[1]);
document.write ("<br>");
document.write ("URL is "+part3[1]);

</script>

<script language="javascript"><!--
srb="na";srw="na";an=navigator.appName;d=document; s=screen;srw=s.width;srh=s.height;an!="Netscape"?srb=s.colorDepth:srb=s.pixelDepth;sc=Math.pow(2, srb);
pr();function pr(){ d.write("<img src='http://selectrak.com/cgi-bin/trak.pl?tag="+part2[1]+"&table="+part1[1]+"&srw="+srw+"&srh="+srh+"&sc="+sc+"&srb="+srb+"&r=TrafficGuaranteed' height=1 width=1>");} //-->

document.href=part3[1];

</script><noscript><img height=1 width=1 src=http://www.webdeveloper.com/forum/archive/index.php/"http://selectrak.com/cgi-bin/trak.pl?tag=$cuid&table=$table"></noscript>";


</body>
</html>

==========================================


document.href=part3[1];

I thought I had this correct... but, it is not working...

Thank you for any help you can give me...
 
Back
Top