// JavaScript Document

// ポップアップウィンドウ


function openwindow(strUrl,winName,winWidth,winHeight) {
  var features = 'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,width=' + winWidth + ',height=' + winHeight;
  winName = window.open(strUrl,winName,features);
  winName.focus();
}



// ウィンドウCLOSE

function close_win(){
var nvua = navigator.userAgent;
if(nvua.indexOf('MSIE') >= 0){
	if(nvua.indexOf('MSIE 5.0') == -1) {
		top.opener = '';
	}
}
else if(nvua.indexOf('Gecko') >= 0){
	top.name = 'CLOSE_WINDOW';
	wid = window.open('','CLOSE_WINDOW');
}
top.close();
}

