function showScreenshot(link, name, x, y) {
	options="toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0";
   	picwin=window.open('', '', options + ', width=' + x + ', height=' + y);
	picwin.focus();
	picwin.document.open();
	with(picwin) {
		document.write("<html><head>");
		document.write("<title>fwLOGview screenshots - " + name + "</title>");
		document.write("</head>");
		document.write("<body leftmargin=\"0\" marginheight=\"0\" marginwidth=\"0\" topmargin=\"0\">");
		document.write("<img border=\"0\" onclick=\"window.close();\" src=\""+ link +"\" title=\"fwLOGview screenshot - click to close\">");
		document.write("</body></html>");
	}
}

