// validate key word for searching
function sValidate(thisform){
	if (thisform.all['tx_indexedsearch[sword]'].value == ""){
		alert("Please input the key word to search!");
		thisform.all['tx_indexedsearch[sword]'].focus();
		return false;
	}
	return true;
}

