//<script language="JavaScript">
<!-- search specific scripts

function BYS_OpenSearch(newURL, features) {
	if(!this.popWinSearch) {
		this.popWinSearch = window.open(newURL,'popWinSearch', features);
		this.popWinSearch.focus();
	}
	else {
		if(this.popWinSearch.closed) 
			this.popWinSearch = window.open(newURL,'popWinSearch', features);
		else {
			this.popWinSearch.location.href = newURL;
			this.popWinSearch.focus();
		}
	}
	return true;
}
// -->
//</script>