<!--

function checkSearch(theForm){
    if(theForm.keyword.value==''||theForm.keyword.value=='請輸入商品名稱') {
        alert('請輸入搜尋關鍵字!');
        theForm.keyword.value='';
        theForm.keyword.focus();
        return false;
    }            
}
function clearFindField(the){
    if(the.value == "請輸入商品名稱"){
        the.value ="";
    }    
}

//-->
    
