// JavaScript Document

function funcOpenwindow(){
	var yoko = 650;
	var tate = 480;
	var xPos = (screen.width-yoko) / 2;
	var yPos = (screen.height-tate) / 2;
	window.open("icon_caption.html", "アイコンの説明", "top=" +yPos+ ",left=" +xPos+ ",directions=0,location=0,menubar=0,status=0,toolbar=0,scrollbars=yes,resizable=yes,width=" +yoko+ ",height="+tate);
}

function funcClosewindow(){
	window.close();
}

