function menuswitch(targetId, action){
    if ( document.getElementById ){
        target = document.getElementById(targetId);
        target.style.overflow=(action=="open")?"visible":"hidden";
    }
};

function setsearch(targetId, searchtype) {
    if ( document.getElementById ){
        targetform = document.getElementById(targetId);
        targetform.action=(searchtype=="inet")?"/cgi-bin/query":"/shop/customer/search.php";
        targetform.target=(searchtype=="inet")?"_self":"_self";
    }
}

