// JavaScript Document

function doClear(theText) {
	if (theText.value == theText.defaultValue) {
		theText.value = ""
	}
}

function submitSearch(){
	//alert('xxx');
	//if(document.sform.onsubmit()) {
		document.sform.submit();
	//}
}