<!--
	function searchFocus(elm) {
		if (elm.value == " keyword(s)") {elm.value="";}
	}
	function searchBlur(elm) {
		if (elm.value == "") {elm.value=" keyword(s)";}
	}

function openCenteredWindow(theURL,winName,iWidth,iHeight) {
	var iXpos = (screen.width - iWidth) / 2;
	var iYpos = ((screen.height - iHeight) / 2) - 50;
	window.open(theURL,winName,'width='+iWidth+',height='+iHeight+',screenX='+iXpos+',screenY='+iYpos+',left='+iXpos+',top='+iYpos);
}

//-->
