Ok i found some html to replace my old code and now the 404 errors are gone. Only thing is now every link opens in the same window. That is fine for the links that go to wrappers like, South Dakota, or my California link. But for the links like for Alabama and Alaska that navigate away from the site i wanted these links to open in a new window so that my site stays up on the screen. I tried adding the target="_blank" coding behind the links but it does nothing. Do i have to add that option to the script code for it to work? If so where would i put it?
Thanks!!!!
Here is the script code:
<SCRIPT TYPE="text/javascript">
<!--
function dropdown(mySel)
{
var myWin, myVal;
myVal = mySel.options[mySel.selectedIndex].value;
if(myVal)
{
if(mySel.form.target)myWin = parent[mySel.form.target];
else myWin = window;
if (! myWin) return true;
myWin.location = myVal;
}
return false;
}
//-->
</SCRIPT>
<FORM
ACTION="../cgi-bin/redirect.pl"
METHOD=POST onSubmit="return dropdown(this.gourl)">
<SELECT NAME="gourl">