Code
<html>
<head>
<script type="text/javascript">
parmarr = new Array;
valuearr = new Array;
function readparms()
{
if(location.search!='')
{
Args = location.search.substring(1);
parmarr = Args.split('&');
for(i=0;i<parmarr.length;i++)
{
valuearr[i] = parmarr[i].split('=');
}
}
}
</script>
</head>
<body onLoad="readparms();showparms();">
<script type="text/javascript">
// all this script does is display the parms but the
// stored values can be used by any function
function showparms()
{
if(location.search!='')
{
for(i=0;i<valuearr.length;i++)
{
document.write(valuearr[i][0] +'=' +valuearr[i][1] +'<br>');
}
}
}
</script>
</body>
</html>
