function checkURL(selectbox) {


    if (selectbox == "quickFind1") {
			quickFind1 = document.menuform1.SelectMenu1.options[document.menuform1.SelectMenu1.selectedIndex].value;
			if (quickFind1 ==  "" ) {
				alert("Please select an item");

			} else {

				window.location.href = document.menuform1.SelectMenu1.options[document.menuform1.SelectMenu1.selectedIndex].value;

			}
		} else if (selectbox == "quickFind2") {
					quickFind2 = document.menuform2.SelectMenu2.options[document.menuform2.SelectMenu2.selectedIndex].value;
					if (quickFind2 ==  "" ) {
						alert("Please select an item");

					} else {

						window.location.href = document.menuform2.SelectMenu2.options[document.menuform2.SelectMenu2.selectedIndex].value;

					}
		} else if (selectbox == "quickFind3") {
							quickFind3 = document.menuform3.SelectMenu3.options[document.menuform3.SelectMenu3.selectedIndex].value;
							if (quickFind3 ==  "" ) {
								alert("Please select an item");

							} else {

								window.location.href = document.menuform3.SelectMenu3.options[document.menuform3.SelectMenu3.selectedIndex].value;

							}
		} else if (selectbox == "othersites") {
														//othersites = document.othersites.sites.options[document.othersites.sites.selectedIndex].value;
		
							if (document.othersites.sites.options[document.othersites.sites.selectedIndex].value==  "other" ) {
								alert("Please select an item");

							} else {

							popupWin = window.open ( document.othersites.sites.options[document.othersites.sites.selectedIndex].value, 'remote', 'toolbar=1,menubar=1,location=1,status=1,scrollbars=1, width=1200,height=1000' );

							}
		}



}
 
