 NS4 = (document.layers) ? 1 : 0;
 IE4 = (document.all) ? 1 : 0;
 DOM = (document.getElementById) ? 1 : 0;

function pop(kep,w,h) {
	var msg = window.open('','_blank','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width='+w+',height='+h+',top=100,left=100');
	msg.document.write('<head>');
	msg.document.write('<title>ToyotaMiskolc.hu</title>');
	msg.document.write('<meta http-equiv="content-type" content="text/html; charset=iso-8859-2">');
	msg.document.write('</head>');

	msg.document.write('<body style="margin: 0px; padding: 0px;">');
	msg.document.write('<a href="javascript: window.close();"><img width="'+w+'" height="'+h+'" src="'+kep+'" border="0" alt=""></a>');
	msg.document.write('</body>');
	msg.document.write('</html>');
	msg.document.close();
}

 function openbox(x)  {
   if (IE4) {getMouseXY(this)}
   if (NS4)
   {
    document.layers[x].visibility='show';
   }
   else if (IE4)
   {
    document.all[x].style.visibility='visible';
    }
   else if (DOM)
   {
    document.getElementById(x).style.visibility='visible';
   }
  }
  
 function closebox(x) {
   if (NS4)
   {
    document.layers[x].visibility='hide';
   }
   else if (IE4)
   {
    document.all[x].style.visibility='hidden';
    }
   else if (DOM)
   {
    document.getElementById(x).style.visibility='hidden';
   }
 }
 


