<!--

    function switchUl(id){
         if(document.getElementById){
             a=document.getElementById(id);
             a.style.display=(a.style.display!="none")?"none":"block";
         }
     }

    function dealerAction(action,name,formid) {
        var agree=confirm("Are you sure you wish to " + action + " " + name + "?");
        if (agree) {
            document.getElementById(formid).submit();
        }
    }

//-->

