function img(Aurl,wx,wy) {
	//Internet Exproler ver4 or more
	var isIE4 = (navigator.appVersion.charAt(0) >= "4") && (navigator.appName.charAt(0) == "M");

	if ( isIE4 ) {
		wo11=window.open("","","width="+wx+",height="+wy+"");
	}
	else {
		wx = wx + 16;
		wy = wy + 16;
		wo11=window.open("","","width="+wx+",height="+wy+"");
	}

	wo11.document.open();
	wo11.document.writeln("<?xml version=\"1.0\" encoding=\"utf-8\"?>");
	wo11.document.writeln("<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">");
	wo11.document.writeln("<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"ja\" lang=\"ja\">");
	wo11.document.writeln("<head>");
	wo11.document.writeln("<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\" />");
	wo11.document.writeln("<meta http-equiv=\"Content-Script-Type\" content=\"text/javascript\" />");
	wo11.document.writeln("<title>ゲーム画面</title>");
	wo11.document.writeln("</head>");

	if ( isIE4 ) {
		wo11.document.writeln("<body style=\"margin:0 0 0 0;\">");
	}
	else {
		wo11.document.writeln("<body>");
	}

	wo11.document.write("<a href=\"javascript:window.close();\">");

	if ( isIE4 ) {
		wo11.document.write("<img style=\"border-width:0 0\" SRC=\"" + Aurl + "\" alt=\"クリックで閉じます\">");
	}
	else {
		wo11.document.write("<img src=\"" + Aurl + "\" alt=\"クリックで閉じます\" border=\"0\">");
	}

	wo11.document.writeln("</a>");
	wo11.document.writeln("</body>");
	wo11.document.writeln("</html>");
	wo11.document.close();
}

