<!--//
function checkSearchForm(){
	  if((document.forms.sitesearch.keyword.value.length == 0)||(document.forms.sitesearch.keyword.value == "------")){
	  	alert('Please enter a keyword for your search.');
   		document.forms.sitesearch.keyword.focus();
   		return false;
		}
	}
// CODE USED TO POP NEW WINDOWS
//------------------------------------------------------------------------ -----
        window.onerror=null
        var TimerID = null;
        var timer = 0;
        var screenHeight=window.screen.height;
        var screenWidth=window.screen.width;
// ------------------------------------------------------------------------ -----
function popWindow(URLString,windowWidth,windowHeight,scrollbarValue) {
        var Xcoordinate = (screenWidth-windowWidth)/2;
        var Ycoordinate = (screenHeight-windowHeight)/3;
        poppedWindowCenter = window.open(URLString,'NewWindow','width='+windowWidth+',height='+windowHeight +',scrollbars='+scrollbarValue +',toolbar=no,menubar=no,status=yes,directories=no,location=no,resizable =yes');
        poppedWindowCenter.moveTo(Xcoordinate,Ycoordinate);
        poppedWindowCenter.focus();
}

-->

