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 show(id)
{
	if (document.getElementById) {
		var obj = document.getElementById(id);
		obj.style.display = obj.style.display == 'block' ? 'none' : 'block';
	}
}