function popupImg(img,wid,hei){
	scWidthCenter = screen.availWidth / 2;
	scHeightCenter = screen.availHeight / 2;
	wOption = "toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbars=no,resizable=no,width=" + wid + ",height=" + hei + ",left=" + (scWidthCenter - (wid / 2)) + ",top=" + (scHeightCenter - (hei / 2));
	newWin = window.open("", wid + hei, wOption);
newWin.document.open();
newWin.document.writeln('<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">');
newWin.document.writeln('<html lang="en">');
newWin.document.writeln('<head>');
newWin.document.writeln('<meta http-equiv="Content-Type" content="text/html; charset=Shift_JIS">');
newWin.document.writeln('<meta http-equiv="Content-Script-Type" content="text/javascript">');
newWin.document.writeln('<title>Platinum.ac</title>');
newWin.document.writeln('</head>');
newWin.document.writeln('<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0" onload="focus()" onblur="focus()">');
newWin.document.writeln('<a href="javascript:void(0)"  onmouseup="window.close()"><img src="' + img + '" border="0" width="' + wid + '" height="' + hei + '" alt="Click to close the popup."></a>');
newWin.document.writeln('</body>');
newWin.document.writeln('</html>');
newWin.document.close();
}