<!--
// スクリーンショットのウィンドウを開く
// html:ファイル名, winname:開くウィンドウの名前指定
function openwin1( html, winname ){
	newWindow = window.open( html,winname,"status=0,resizable=0,width=559,height=340");
newWindow.focus();
}

function openwin2( img, winname ){
                newWindow = window.open( img, winname,"status=0,resizable=0,width=660,height=500");
newWindow.focus();
}

function openwin4( img, winname ){
                newWindow = window.open( img, winname,"status=0,resizable=0,width=580,height=400");
newWindow.focus();
}

function openwin3( html, winname ){
                newWindow = window.open( html, winname,"status=0,resizable=0,width=300,height=300");
newWindow.focus();
}
//-->

