function popup(file,width,height) {
	Fileview = window.open(file, "_blank", "width="+width+",height="+height+",location=no,menubar=no,resizable=yes,scrollbars=no,status=no,toolbar=no");
	Fileview.focus();
}
function popupScroll(file,width,height) {
	Fileview = window.open(file, "_blank", "width="+width+",height="+height+",location=no,menubar=no,resizable=yes,scrollbars=yes,status=no,toolbar=no");
	Fileview.focus();
}
function popupscroll(file,width,height) {
	Fileview = window.open(file, "_blank", "width="+width+",height="+height+",location=no,menubar=no,resizable=yes,scrollbars=yes,status=no,toolbar=no");
	Fileview.focus();
}

function searchForm(theForm)
{
	if(theForm.Sport.options[theForm.Sport.selectedIndex].value == "")
	{
		alert("You must select a sport.");
		theForm.Sport.focus();
		return false;
	}
	else if(theForm.State.options[theForm.State.selectedIndex].value == "")
	{
		alert("You must select a state.");
		theForm.State.focus();
		return false;
	}
	else
	{
		if(theForm.City.value == "--City--")
			theForm.City.value = "";	
		return true;
	}
}
