function openWin(link, name, height, width, top, left)
{
	window.open(link, name , 'height=' + height + ',width=' + width + ',top=' + top + ',left=' + left + ',scrollbars=yes,resizable=yes');
	this.navigate ='';
}

function doSearch()
{
	if (!document.searchform.search.value)
	{
		document.searchform.search.focus();
		return;
	}
	openWin('/search/search.asp?search=' + document.searchform.search.value,'search',460,380,50,300);
}

function navigateMain(url)
{
	window.opener.location = url;
}