function popup(mylink, windowname)
{
	if (! window.focus)return true;
	var href;
	if (typeof(mylink) == 'string')
	   href=mylink;
	else
	   href=mylink.href;
	window.open(href, windowname, 'width=320,height=255,scrollbars=no');
	return false;
}

function ResetSearchForm(formName, searchElement) {		
	form = document.getElementById(formName);
	form.searchElement.value = '';			
	form.clearSearch.value = 1;
}
//-->