/* open windows*/
function WinOpen(src, w, h, l, t) 
{
	w = w;
	h = h;
	no = window.open(src,"","toolbar=no,location=no,status=no,menubar=no," +
		"directories=no,scrollbars=no,resizable=yes," +
		"width=" + w +",height=" + h +",top=" + t + ",left=" + l);
		
	with (no.document)
	{
		open();
		writeln('<html>\n<body leftmargin="0" topmargin="0" rightmargin="0" bottommargin="0" marginwidth="0" marginheight="0">');
		writeln('<img src="' + src + '">');
		writeln('</body\n</html>');
		close();
		//focus();
	}		
}