// Menu
function kadabra(zap,obj) {
 if (document.getElementById) {
  var abra = document.getElementById(zap).style;
  if (abra.display == "block") {
   abra.display = "none"; 
   obj.firstChild.src = "http://localhost/nec/images/menu_close.gif";
   } else {
   abra.display = "block";	
  obj.firstChild.src = "http://localhost/nec/images/menu_open.gif";
  }
  return false;
  } else {
  return true;
 }
}

function Clickheretoprint()
{ 
  var disp_setting="toolbar=yes,location=no,directories=yes,menubar=yes,"; 
      disp_setting+="scrollbars=yes,width=650, height=600, left=100, top=25"; 
  var content_vlue = document.getElementById("print").innerHTML; 
  
  var docprint=window.open("","",disp_setting); 
   docprint.document.open(); 
   docprint.document.write('<html><head><title>NEC<title>'); 
 docprint.document.write('<link href="css/style.css" type="text/css" rel="stylesheet" media="all">');
      docprint.document.write('<link href="css/mm_lodging1.css" type="text/css" rel="stylesheet" media="all">');
      docprint.document.write('<link href="css/print.css" type="text/css" rel="stylesheet" media="print">');

   docprint.document.write('</head>');
   docprint.document.write('<body class="admin" onLoad="self.print()">');         
   docprint.document.write(content_vlue);          
   docprint.document.close(); 
   docprint.focus(); 
}

function emailThisPage(){
  var target = document.location
  var win = window.open('http://nec.go.tz/sendmail.php?url='+target,
                        'notice',
                        'width=620,height=520,location=no,toolbar=no,status=no,resizable=no,scrollbars=yes');
  win.focus();
}

