
	function showVideo(myParam) {
		window.open(myParam,"","location=no,scrollbars=no,toolbar=no,menubar=no,statusbar=no,resizable=no,width=550,height=390,left=100,top=100");
	}
	
		function showVideo600(myParam) {
		window.open(myParam,"","location=no,scrollbars=no,toolbar=no,menubar=no,statusbar=no,resizable=no,width=600,height=390,left=100,top=100");
	}
	
	function buttonMouseOver(img, sMouseOverText) {
		window.status = 'Click to sort by ' + sMouseOverText;
		return true;
	}
	
	function buttonMouseOut(img) {
		window.status = '';
		return true;
	}
	
	function menuLayer(aoApp, vis) {
		var n=navigator.appName
		var v=parseInt(navigator.appVersion)	
		var oldNetscape = ((n == 'Netscape') && (v < 5))
		var IE = (n == 'Microsoft Internet Explorer')
		var N6 = ((n == 'Netscape') && (v >= 5))
		if (oldNetscape) {
		   var layerOldNetscape = document.layers[aoApp];
		   layerOldNetscape.visibility = vis;
		 }else if (IE) {
		   var layerIE = document.all.item(aoApp);
		   layerIE.style.visibility = vis;
		 }else if (N6) {
		   var layerNetscape6 = document.getElementById(aoApp);
		  layerNetscape6.style.visibility = vis;
		 }
	}
	function validateForm() {
		if ( document.search_form.zoom_query.value == "" && document.search_form.search_category.selectedIndex == 0 ) {
			alert("Please enter a search string or select a specific category.");
			return false;
		} else if ( document.search_form.zoom_query.value == "Enter Keyword(s)" && document.search_form.search_category.selectedIndex == 0 ) {
			alert("Please enter a search string or select a specific category.");
			return false;
		} else {
			if ( (document.search_form.zoom_query.value == "" || document.search_form.zoom_query.value == "Enter Keyword(s)" ) && document.search_form.search_category.selectedIndex > 0 ) {
				document.search_form.action = "/search/search_archives.asp";
			}
		return true;
		} 
	}
	function popPasswordRemind(theemail) {
		window.open('/actions/doPasswordSendNow.asp?x1=' +  theemail,'','scrollbars=yes,toolbar=no,menubar=no,statusbar=no,resizable=no,width=500,height=100,left=100,top=100');
	}

