<!--	
	var siteWindow = null;
	function openWindow(myURL,myWidth,myHeight) {
		if(siteWindow != null && !siteWindow.closed) {
			siteWindow.close ();
			openWindow(myURL,myWidth,myHeight);
		}else{
			var window_left = (screen.width/2)-(myWidth/2);
			var window_top = (screen.height/2)-(myHeight/2+90);
			siteWindow=window.open(myURL,'popup','toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=no, resizable=no, copyhistory=no, top='+window_top+',left='+window_left+',width='+myWidth+',height='+myHeight)
			setTimeout("siteWindow.focus()",200);
		}
	}
	
	var newWin = null; 
	function popUp(strURL, strType, strHeight, strWidth) { 
 	if (newWin != null && !newWin.closed) 
  	newWin.close(); 
 		var strOptions=""; 
 		var window_left = (screen.width/2)-(strWidth/2);
		var window_top = (screen.height/2)-(strHeight/2+90);
 		if (strType=="console") 
   		strOptions="resizable,top="+window_top+",left="+window_left+",height="+strHeight+",width="+strWidth; 
 		if (strType=="fixed") 
   		strOptions="status,top="+window_top+",left="+window_left+",height="+strHeight+",width="+strWidth; 
 		if (strType=="elastic") 
   		strOptions="toolbar,menubar,scrollbars,"+"resizable,location,top="+window_top+",left="+window_left+",height="+strHeight+",width="+strWidth; 
 		newWin = window.open(strURL, 'newWin', strOptions); 
 		newWin.focus(); 
	}

	function closeChild() {
 		if (newWin != null && !newWin.closed) 
	  	newWin.close(); 
	}
	
	function submit(theForm){
		theForm.submit();
	}		
	
	function closewindow() {
		window.close()
	}
	
	function getFocus(){
		document.forms.searchform.searchstring.focus()
	}
	
	function locate(URL) {
		window.location=URL
	}
	
	function confirmSubmit(txt) {
		var agree=confirm(txt);
		if (agree){
			return true;
		}else{
			return false;
		}
	}

	function confirmAndLocate(txt, URL) {
		var agree=confirm(txt);
		if (agree){
			window.location=URL
		}else{
			return false;
		}
	}
		
	function validate(txt) {
		input = document.forms.visit.phone.value
		if (input.length<8) {
			alert(txt)
			document.forms.visit.phone.select()
			document.forms.visit.phone.focus()
			return false
		}else{
			return true
		}
	}

-->