

function openWindow(theURL,winName,features) { //v2.0
	newWindow = window.open(theURL,winName,features);
	newWindow.focus();
	return false;
}
function jumpto(targ,selObj,restore){ //v3.0
		eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
	if (restore) selObj.selectedIndex=0;
}
function validate_required(field,alerttxt)	{
	with (field)	{
		if (value==null||value=="")	{
			alert(alerttxt);
			return false;
		} else {
			return true;
		}
	}
}
function validate_form(thisform)	{
	with (thisform)	{
		if (validate_required(searchValue,"Please enter a keyword for the search.")==false)	{
			name.focus();
			return false;
		}
		document.search.submit();
	}
}

function validate_searchform(thisform)	{
	with (thisform)	{
		if (validate_required(searchValue,"Please enter a keyword for the search.")==false)	{
			name.focus();
			return false;
		}
		document.searchform.submit();
	}
}

