
if(document.layers){
	document.write('<link rel="STYLESHEET" type="text/css" href="/Style_Netscape_Nav.css">');
	}
else{
	document.write('<link rel="STYLESHEET" type="text/css" href="/Style_IE_Nav.css">');
	}

//This is the Popup Window Code
function openWindow(URL1){

popupWin=window.open(URL1, 'newWin', 'menubar=1,toolbar=1,location=1,status=1,scrollbars=1,resizable=1,width=640,height=480,left=100,top=75');

}

// End of Popup Window Code

// Select List go code
function go()
{	if (document.form1.select.selectedIndex > 0 )
	 window.location.href = document.form1.select[document.form1.select.selectedIndex].value
}
// end of Select list go code

//This a select list go for when the list is in a div for hiding purposes.
function divSelectGo(){
	if (document.layers){
		window.location.href = document.theList.document.form1.select[document.theList.document.form1.select.selectedIndex].value
		}
	else {
		window.location.href = document.forms['form1'].select.value
		}
	}
//end of div select list