function MenuOn(x){ 
         obj=document.getElementById("submenu"+x).style.visibility="visible";
}
function MenuOff(x){ 
         obj=document.getElementById("submenu"+x).style.visibility="hidden"; 
}

function JustSizeWindow(img,w,h){ 
  var ini = ""; 
  ini += 'top=300,left=400'; 
  ini += ',width='+eval(w)+',height='+eval(h)+','; 
  ini += 'directories=0,toolbar=0,menubar=0,scrollbars=0,status=0,resizable=0'; 
  jsw=window.open('','jsw',ini); 
  jsw.focus(); 
  htm  = '<html><head>'; 
  htm += '<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=shift_JIS">'; 
  htm += '<meta http-equiv="imagetoolbar" content="no">'; 
  htm += '<title></title>'; 
  htm += '</head>'; 
  htm += '<bod' + 'y bgcolor=#ffffff leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">'; 
  htm += '<a href="javascript:void(0)" onClick="self.close();return false;">'; 
  htm += '<img src="'+img+'" width="'+w+'" height="'+h+'" border=0 alt="">'; 
  htm += '</a>'; 
  htm += '</bod'+'y></html>'; 
  jsw.document.write(htm); 
  jsw.document.close(); 
} 

