// disable form submit on enter key press
function disableEnterKey(e){
     var key;      
     if(window.event)
          key = window.event.keyCode; //IE
     else
          key = e.which; //firefox      

     return (key != 13);
}


//
function openwin(theUrl){
	var vOptions = "width=800,height=600,location,menubar,status,resizable,scrollbars,toolbar";
	var handle = window.open(theUrl,"winx",vOptions);
	handle.focus();
}

// 
function submitSearch(theForm){
	document.searchForm.action  = "search.php";
	document.searchForm.submit();
}

//
var vFlag = true;
function searchFlag(vField){
	if(vFlag){
		vFlag = false;
		vField.value = "";
	}
}

//
var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));

// 
try {
	var pageTracker = _gat._getTracker("UA-3589145-4");
	pageTracker._trackPageview();
} 
catch(err) {}