function menu_show() {
 var style = document.getElementById("menudiv").style;
 style.left = "0px";
}

function menu_hide() {
 var style = document.getElementById("menudiv").style;
 style.left = "-185px";
}

function confirmsubmit(frm) {
      Sexy.confirm('Are you sure? Click Cancel if you\'re not...', {onComplete: 
	function(returnvalue) { 
    	    if(returnvalue) {
    	      document.forms[frm].submit();
            }
        }
      });

// if (confirm("Really?"))
//  document.forms[frm].submit();
}