function validateKeyword(me){
if (typeof(killonunload)!="function") return
killonunload();
if(!validField(me.keyword_global_search.value) || (me.keyword_global_search.value=="Enter Keyword")){
	window.document.location.href='/vegas/search/search.jsp?search=empty';
	return false;
}
}

function clearField(box,e) {box.value=box.value==box.defaultValue?"":box.defaultValue}