//-----------------------ウインドウOPEN

function show(image,wi,he,namae){
	image = "images/" + image;
	he = 64+he;
	wi = 20+wi;
	x = (screen.width - wi) / 2;
	y = (screen.height - he) / 2;
	win ="left=" + x + ",top=" + y + ",width=" + wi + ",height=" + he + ",scrollbars=no,location=no,menubar=no,resizable=yes";
	subWin = window.open("sub.html","",win);
	html1 = "<html><head><title>";
	html3 = "</title></head><body topmargin=10 marginheight=10 marginwidth=10 leftmargin=10 bgcolor=#ffffff><center>";
	html2 = "<p><a href=# onclick=window.close()>ウィンドウを閉じる</a></p></center></body></html>";
	img1 = "<img src='" + image + "'>";
	str = html1 + namae + html3 + img1 + html2;
	subWin.document.open();
	subWin.document.write(str);
	subWin.document.close();
}

//-----------------------ウインドウOPEN
