function setPic(picturename, picref, dimx, dimy)
{
	var opts, x, y;
	
	x = dimx + 40;
	y = dimy + 150;

	opts = "innerwidth=" + y + ",innerheight=" + x + ",scrollbars=yes,resizable=yes,toolbar=0,location=0,directories=0,status=0,menubar=0,copyhistory=0";

	picWindow = window.open("blank_page.html", "_blank", opts);
	 
	picWindow.document.write("<HEAD><TITLE>" + picturename + "</TITLE></HEAD>");

	picWindow.document.write("<BODY BGCOLOR='black'>");

	picWindow.document.write("<P>");
	picWindow.document.write("<CENTER><IMG SRC='"+picref+"' HEIGHT="+dimy+" WIDTH="+dimx+"></CENTER>");
	picWindow.document.write("<P><CENTER><FONT COLOR='white' FACE='arial, helvetica'>"+picturename+"</FONT></CENTER>");
	picWindow.document.write("<P><FORM><CENTER><INPUT TYPE=BUTTON VALUE='Close' onClick='window.close(); return true'></FORM></BODY>");

	picWindow.document.close();
}
