<!-- Begin
function clearfield(){
if (document.search_form.str.value == "Enter keyword")
	document.search_form.str.value = "";
}
function clearfield2(){
if (document.vacancy_form.str.value == "Enter keyword/phrase")
	document.vacancy_form.str.value = "";
}
function do_search(){
//if ((document.search_form.str.value == "Enter keyword") || (document.search_form.str.value == ""))
if (document.search_form.str.value == "Enter keyword") 
	{
	document.search_form.str.value ="";
	document.search_form.submit();
	}
//	alert("Please specify a keyword to search for.");
else document.search_form.submit();
}
function do_vacancy_search(){
//if (((document.vacancy_form.str.value == "Enter keyword/phrase") || (document.vacancy_form.str.value == "")) && (document.vacancy_form.jobref.value == ""))
if (document.vacancy_form.str.value == "Enter keyword") 
	{
	document.vacancy_form.str.value ="";
	document.vacancy_form.submit();
	}
//alert("Please specify a keyword/phrase or a Job reference number.");
else document.vacancy_form.submit();
}
function PrintThisPage() 
{ 
   var sOption="toolbar=yes,location=no,directories=yes,menubar=yes,"; 
         sOption+="scrollbars=yes,width=600,height=600"; 
   
   var winprint=window.open("/print/default.asp","Print",sOption); 
 
    winprint.focus(); 
}
//  End -->
