function displayPicture(thePicture, theTitle, theHeight, theWidth, theLeft, theTop)
{
	msg=window.open("","msg","height=" + theHeight + ",width=" + theWidth + ",left=" + theLeft + ",top=" + theTop);
	msg.document.write("<html><head><title>" + theTitle + "</title></head>");
	msg.document.write('<body  topmargin="0" marginwidth="0" marginheight="0" leftmargin="0">');
	msg.document.write("<IMG SRC='" + thePicture + "'>");
	msg.document.write("</body></html>");
	msg.document.close();
}