
		function CkLength(){
			//alert(document.search.sv.value.length);
			if (document.search.sv.value.length <= "2"){
				alert("Please search with three or more characters");
				document.search.sv.focus();
			}else{
			document.search.submit();
			}
		} 


	var newWindow;
	var oldStuff = parseInt(navigator.appversion) < 4;
	function makeNewWindow(a){
		$url = a;
		newWindow = window.open();
			if(!newWindow.opener) {
				newWindow.opener = window;
			}
			setTimeout("writeToWindow()", 500)
			if (!oldStuff){
				newWindow.focus()
			}
	}

	function writeToWindow() {
		newWindow.document.write('<FRAMESET COLS=\"100%\" ROWS=\"20,*\" MARGINHEIGHT=0 MARGINWIDTH=0 FRAMESPACING=0 FRAMEBORDER=0 FRAMEBORDER=no>\n');
		newWindow.document.write('<FRAME NAME=\"top\" SRC=\"of/back.html\" SCROLLING=NO MARGINHEIGHT=0 MARGINWIDTH=0 FRAMESPACING=0 FRAMEBORDER=1 FRAMEBORDER=no>\n');
		newWindow.document.write('<FRAME NAME=\"main\" SRC=\"'+$url+ '\" SCROLLING=\"Auto\" MARGINHEIGHT=0 MARGINWIDTH=0 FRAMESPACING=0 FRAMEBORDER=0 FRAMEBORDER=no>\n');
		newWindow.document.write('</FRAMESET>\n');
		newWindow.document.close()
	}


		function go(){
		if (document.selecter.select1.options[document.selecter.select1.selectedIndex].value != "none") {
		location = document.selecter.select1.options[document.selecter.select1.selectedIndex].value
		 }                       
		}

