<!--
// html:ファイル名, winname:開くウィンドウの名前指定
function openwin1( html, winname ){
	newWindow = window.open( html,winname,"status=0,resizable=0,width=600,height=800");
newWindow.focus();
}

function openwin2( html, winname ){
	newWindow = window.open( html,winname,"status=0,resizable=0");
newWindow.focus();
}
//-->
