function imgWin(desktopURL,desktopNAME,desktopSIZE){

	newin = window.open(desktopURL,desktopNAME,desktopSIZE,"toolbar=no,location=no,status=no,menubar=no,scrollbars=no,resizable=no");
	newin.document.open();
	newin.document.write("<html>\n")
	newin.document.write("<head>\n")
	newin.document.write("<title>"+desktopNAME+"</title>\n");
	newin.document.write("<body bgcolor=\"#000000\" text=\"#b00000\" link=\"#ffffff\" alink=\"#c0c0c0\" vlink=\"#808080\" marginwidth=\"0\" marginheight=\"0\" leftmargin=\"0\" topmargin=\"0\">\n");
	newin.document.write("<img src=\""+desktopURL+"\" border=\"0\">\n");
	newin.document.write("</body>\n");
	newin.document.write("</html>");
	newin.document.close();

        }
