// JavaScript Document
function searchText(){
	document.frmSearch.submit();
}

function clearText(strText){
	if(strText=='Search'){
		document.frmSearch.keyword.value='';
	}
}

function setText(strText){
	if(strText==''){
		document.frmSearch.keyword.value='Search';
	}
}

function clearText2(strText2){
	if(strText2=='Receptionist'){
		document.career.applyposition.value='';
	}
}

function setText2(strText2){
	if(strText2==''){
		document.career.applyposition.value='Receptionist';
	}
}