var win1;

function enlargeImage(img, w, h) {
	if(win1) {	win1.close();	 }
	win1 = window.open("", "hermes", "scrollbars=no, status=no, width=" + (w+4) + ", height=" + (h+4) + "");
	win1.document.writeln ("<body bgcolor=\"black\">");
	win1.document.writeln ("<div style=\"top: 2px; left: 2px; position: absolute;\">");
	win1.document.writeln ("<img src='" + img + "' width='" + w + "' height='" + h + "' />");
	win1.document.writeln ("</div>");
}