function popup(Path, Width, Height, Title)
{
   WinFeatures = "top="+(screen.height-Height)/2+",left="+(screen.width-Width)/2+",width="+Width+",height="+Height+",Status=no,toolbar=no,menubar=no,location=no,directories=no,scrollbars=no";
   w = window.open("", "window", WinFeatures);
   w.document.open();
   w.document.write('<html>');
   w.document.write('<head><title>'+Title+'</title></head>');
   w.document.write("<body bgcolor='#FFFFFF' leftmargin='0' topmargin='0' marginwidth='0' marginheight='0'><img src='"+Path+"' height='"+Height+"' width='"+Width+"' alt='"+Title+"'></body>");
   w.document.write('</html>');
   w.document.close();
}


function sh(id)
{
	if (document.getElementById) {
		if (id == 'place2') {
			var pl3 = document.getElementById('place3');
			if (pl3.style.display == 'block') pl3.style.display = 'none';
		}

		var obj = document.getElementById(id);
		obj.style.display = (obj.style.display == 'none') ? 'block' : 'none';
	 }
}
