
function resetQuickProductSrh() {

    if (frmSearch.sTitle.value == "快速產品搜尋 Quick product search") {
      frmSearch.sTitle.value = "";
    }
}

function chkSpeedSrh(frm){
	frmValue=frm.sTitle.value;
    if (frm.sTitle.value!="") {

	    frm.submit();
	}else{

 	alert("Please enter keyword");
	frm.sTitle.value = "快速產品搜尋 Quick product search";
	frm.sTitle.focus();	
	return false;
	    
	}
}


function chkELTSpeedSrh(frm){
	var ind, frmValue;
	ind=0;
	frmValue=frm.sTitle.value;
    if (frm.sTitle.value!="") {
	    frm.submit();
	}else{
	    alert("Please enter Title");
	    frm.reset();
		frm.sTitle.focus();
	}
}