if (window!= window.top) top.location.href = location.href;

function checkFormSearch(){
		msgHolder = document.getElementById('msg_fn');
		reqField = document.getElementById('SearchFN');
		if (document.frmSearch.SearchFN.value == "")
			{

				reqField.focus();
				msgHolder.innerHTML = "<B CLASS='error'>PLAYER SEARCH:</B>";
				reqField.style.backgroundColor = "#FFFFCC";
				return false;				
			}
		else
			{
				reqField.style.backgroundColor = "#ffffff";
				msgHolder.innerHTML = "<B>PLAYER SEARCH:</B>";
			}
	  return true;
}