/*----------------------------------------
/ サイズ指定の別ウィンドオープン
/---------------------------------------*/
function openWindow( url ){
	win1 = window.open( url, "window1", "width=640, height=700, resizable=1, scrollbars=1, menubar=1" );
	win1.focus();
}

function openWindow2( url ){
	win1 = window.open( url, "window2", "width=640, height=700, resizable=1, scrollbars=1, menubar=1" );
	win1.focus();
}

