/** JavaScript Function 
 */
/** Changing form action and target */
function SendForm(){ 
        if(document.seek1.tx1.value == ""){
                // case of searching null and empty
                document.seek1.qp.value ="";
        }else{
                // No case of searching null and empty
                document.seek1.qp.value ="url:http://www.mitsubishielectric.co.jp/haisei/";
        }
        document.seek1.action="http://search1.mitsubishielectric.co.jp:7654/queryhaisei.html";
        document.seek1.method="get";
        document.seek1.target="RightDown";
        document.seek1.encoding="application/x-www-form-urlencoded";
}
function SendUltra(){ 
        if(document.seek.tx1.value == ""){
                // case of searching null and empty
                document.seek.qp.value ="";
        }else{
                // No case of searching null and empty
                document.seek.qp.value ="url:http://www.mitsubishielectric.co.jp/haisei/";
        }
        document.seek.action="http://wwwad10.mitsubishielectric.co.jp:7654/query.html";
        document.seek.method="get";
        document.seek.target="_top";
        document.seek.encoding="application/x-www-form-urlencoded";
}

