
/* ウィンドウを開く */
function openWindow(theURL,winName,features) {
	startwindow=window.open(theURL,winName,features);
	startwindow.focus();
}


