function lineup(Aurl,wx,wy) {
	//Internet Exproler ver4 以上
	var isIE4 = (navigator.appVersion.charAt(0) >= "4") && (navigator.appName.charAt(0) == "M");

	if ( isIE4 ) {
		wopen=window.open("","","width="+wx+",height="+wy+"");
	}
	else {
		wx = wx + 15;
		wy = wy + 15;
		wopen=window.open("","","width="+wx+",height="+wy+"");
	}

	wopen.document.open();
	wopen.document.writeln("<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\">");
	wopen.document.writeln("<html>");
	wopen.document.writeln("<head>");
	wopen.document.writeln("<META Http-Equiv=\"Content-Script-Type\" Content=\"text/javascript\">");
	wopen.document.writeln("<title>Picture</title>");
	wopen.document.writeln("</head>");

	if ( isIE4 ) {
		wopen.document.writeln("<body STYLE=\"margin:0 0 0 0;\">");
	}
	else {
		wopen.document.writeln("<body>");
	}

	wopen.document.write("<a href=\"JavaScript:window.close();\">");

	if ( isIE4 ) {
		wopen.document.write("<img style=\"border-width:0 0\" src=\"" + Aurl + "\" alt=\"クリックすると閉じます\">");
	}
	else {
		wopen.document.write("<img src=\"" + Aurl + "\" alt=\"クリックすると閉じます\" border=\"0\">");
	}

	wopen.document.writeln("</A>");
	wopen.document.writeln("</body>");
	wopen.document.writeln("</html>");
	wopen.document.close();
}
