//This function loads a new URL when chosing an item from the product locator dropdown menu
		function jumpTo(formObject) {
			var item=formObject.productLocator.selectedIndex
			var url=formObject.productLocator.options[item].value
			//if this an internal link, just open it in the current window
			if (url.indexOf("http") == -1) {
				if (item > 0) {
					top.location=url;
				}
			}
			//if this an external link, open it in a new window
			if (url.indexOf("http") != -1) {
				openIt(url,'newWindow','');
			} 	
		}
		
		function openIt(URL,Name,features) { 
			if (features == '') {
				newWindow = window.open(URL,Name);
			} else {
				newWindow = window.open(URL,Name,features);
			}
			newWindow.focus();
		}

		function goNextAnchor(where) {
			 // window.location.hash = where; OR
			 location.hash = where;
		}
		
		function MM_openBrWindow(theURL,winName,features) { //v2.0
		  window.open(theURL,winName,features);
		}
		//-->