function checkFormSearch(){
		msgHolder = document.getElementById('msg_fn');
		reqField = document.getElementById('SearchFN');
		if (document.frmSearch.SearchFN.value == "")
			{

				reqField.focus();
				msgHolder.innerHTML = "<B CLASS='error'>*First Name</B>";
				reqField.style.backgroundColor = "#FFFFCC";
				return false;				
			}
		else
			{
				reqField.style.backgroundColor = "#ffffff";
				msgHolder.innerHTML = "<B>*First Name</B>";
			}

		msgHolder = document.getElementById('msg_ln');
		reqField = document.getElementById('SearchLN');
		if (document.frmSearch.SearchLN.value == "")
			{
				msgHolder.innerHTML = "<B CLASS='error'>*Last Name</B>";
				reqField.focus();
				reqField.style.backgroundColor = "#FFFFCC";
				reqField.style.Color = "#ffffff";
				return false;
			}
		else
			{
				reqField.style.backgroundColor = "#ffffff";
				msgHolder.innerHTML = "<B>*Last Name</B>";
			}
	  return true;
}