function fncContact(key){
	switch(key){
		case "nonform":
				window.open('https://www.bos-net.co.jp/contact.php?actionType=0' , '_blank', 'width=780, height=800, status=no, menubar=no, toolbar=no, scrollbars=yes');
				return;
		case "normal":
				window.open('https://www.bos-net.co.jp/contact.php?actionType=1' , '_blank', 'width=780, height=800, status=no, menubar=no, toolbar=no, scrollbars=yes');
				return;
		default:
			break;
	}
}

function fncEntry(){
		window.open('https://www.bos-net.co.jp/entry.php' , '_blank', 'width=780, height=800, status=no, menubar=no, toolbar=no, scrollbars=yes');
		return;
}

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();
} 

