		function openIt(iName, iWidth, iHeight, iComment) {			if (iComment != null) {				iHeight += 70;			}			openWindow = window.open("", "openWindow", " top=0, left=0, width=" + iWidth + ", height=" + iHeight);			openWindow.document.open();			openWindow.document.write('<html><head><title>Orphaned Land</title><link href="standard.css" rel="stylesheet" type="text/css"></head>\n');			openWindow.document.write('<body bgcolor="#000000" topmargin="0" leftmargin="0" marginwidth="0" marginheight="0">\n');			openWindow.document.write('<img src="' + iName + '" />\n');			if (iComment != null) {				openWindow.document.write('<p align="center" style="color: #FFFFFF; font-size: 12px">' + iComment + '\n');			}			openWindow.document.write('</body></html>');			openWindow.document.close();			openWindow.focus();		}