function formHandlerspor()
{

	var windowprops = "toolbar=yes,menubar=yes,location=yes,scrollbars=yes,resizable=yes";
	var URL         = document.spor.site.options[document.spor.site.selectedIndex].value;

    if(URL != "")
	{

  	   if (document.spor.popselect.checked == false)
	   {
		   window.location.href = URL;
	   }
	   else
	   {
		window.open(URL,"MenuPopup",windowprops);
       }
	}

}

document.write('<form name="spor">');
document.write('<select name="site" size=1>');

document.write('<option value="">Sport - Go To....');
document.write('<option value=""> ');
document.write('<option value="">-- Football-------');
document.write('<option value="http://www.footballunlimited.co.uk">Football Unlimited ');
document.write('<option value=""> ');
document.write('<option value="">-- General -------');
document.write('<option value="http://www.sportal.co.uk">Sportal ');
document.write('<option value="http://freeserve.sportingarena.com/">Sporting Arena ');
document.write('<option value=""> ');
document.write('<option value="">-- Golf   -------');
document.write('<option value="http://www.ifyougolf.com">If You Golf ');
document.write('<option value=""> ');
document.write('<option value="">***************************************************');
document.write('</select>');
document.write('<input type=button value="Go!" onClick="javascript:formHandlerspor()">&nbsp&nbsp');
document.write('<input name="popselect" type=checkbox>&nbsp&nbsp New Window');
document.write('</form>');;





