function ErropenWindow(theURL) { //v2.0
   
  window.open(theURL,'ErrorForm','width=420,height=248,top=90,left=10');
}

function CheckForm () { 
	//If there is aproblem with the form then display an error
	if (document.frmInterSearch.search.value == "") {
		msg = "Please enter at least one keyword to search for."
		alert(msg);
		return false;
	}
	return true;
	}
function mailopenWindow(theURL) { //v2.0
  window.open(theURL,'ErrorForm','width=420,height=295,top=90,left=10');
}


