function openPic(src, alt, width, height)
{
	var img = "<img src='" + src + "' height='" + height + "' width='" + width + "' alt='" + alt + "'>";
	var body = "<html>\n<head>\n<title>" + alt + "</title>\n</head>\n\n<body leftmargin='0' topmargin='0' marginheight='0' marginwidth='0' onload='focus()'>\n" + img + "\n</body>\n</html>";
	var params = "width=" + width + ",height=" + height + ",status=no,toolbar=no,menubar=no,scrollbar=no";
	PictureWindow = open("", "_blank", params);
	PictureWindow.document.write(body);
	PictureWindow.document.close();
}