<!--
//ファンクション、小ウィンドウを開く
function OpenWin(url,name,wid,high){
	var controlWindow=window.open(url,name,'WIDTH='+ wid + ',HEIGHT='+ high 
+',resizable=yes,scrollbars=yes,toolbar=no,location=no,directories=no,status=no,menubar=no');
//	controlWindow.document.open();
//	controlWindow.document.write('<BODY MARGINWIDTH=0 MARGINHEIGHTH=0 LEFTMARGIN=10 TOPMARGIN=0>');
//	controlWindow.document.write('<IMG SRC='+file+'>');
//	controlWindow.document.write('</BODY>');
//	controlWindow.document.close();
}
-->