  function hidesubs() {
    if (document.getElementById) { 
      for (i=0;i<document.getElementsByTagName('ul').length; i++) { 
        if(document.getElementsByTagName('ul').item(i).id.substring(0,4) == 'Menu' && document.getElementsByTagName('ul').item(i).id.substring(4) != '1') {
          if(document.getElementsByTagName('ul').item(i).innerHTML.indexOf('currentmenu') == -1) { document.getElementById(document.getElementsByTagName('ul').item(i).id).style.display = "none"; }
        }
      }
    }
  }
  
  function toggle(w) {
    if (document.getElementById) {
      document.getElementById(w).style.display = document.getElementById(w).style.display == "none" ? "block" : "none"; 
    }
  }
  
  function Zoom(img,w,h) {
    var myWindow = window.open("","","width="+w+",height="+h);
	  myWindow.document.open();
  	myWindow.document.write("<HTML><HEAD>");
  	myWindow.document.write("<TITLE>Detail</TITLE><link rel='stylesheet' type='text/css' href='Templates/nocss.css'>");
  	myWindow.document.write("</HEAD><BODY onload='focus();'>");
  	myWindow.document.write("<a href='#' onclick='window.close();'><IMG  HEIGHT='"+h+"' WIDTH='"+w+ "' SRC='" + img + "'></a>");
  	myWindow.document.write("</BODY></HTML>");
  	myWindow.document.close();
  }
