function search(e) {
	if (e == undefined || e.keyCode==13)
		// window.alert(e.keyCode) ;
		location.href = "/Search-results.html?q=" + escape(document.getElementById('searchText').value);
}

function _clr(val,txt) {
	var elm = document.getElementById(val);
	if (elm.value == txt)
		elm.value = "";
}

function _rst(val,txt) {
	var elm = document.getElementById(val);
	if (elm.value == "")
		elm.value = txt;
}


