/*-----------------
type:

	new   .... 7階層以下

	pdf   .... PDF

	form  .... フォーム

	apart .... LCV-Net対応アパート

    class .... こむりん教室
    
    channel .... 16分割

------------------*/
function newWin(url, type) {
	switch ( type ) {
		case 'new':
			w = window.open(url, 'newwindow', 'menubar=no,scrollbars=yes,resizable=yes,status=yes,width=600,height=375');
			break;
		case 'pdf':
			w = window.open(url, 'newwindow', 'menubar=no,scrollbars=yes,resizable=yes,status=yes,width=600,height=375');
			break;
		case 'form':
			w = window.open(url, 'newwindow', 'menubar=no,scrollbars=yes,resizable=yes,status=yes,width=750,height=500');
			break;
		case 'apart':
			w = window.open(url, 'newwindow', 'menubar=no,scrollbars=yes,resizable=yes,status=yes,width=780,height=500');
			break;
		case 'class':
			w = window.open(url, 'newwindow', 'menubar=no,scrollbars=yes,resizable=yes,status=yes,width=780,height=500');
			break;
		case 'channel':
			w = window.open(url, 'newwindow', 'menubar=no,scrollbars=yes,resizable=yes,status=yes,width=600,height=480');
			break;
	}
	w.focus();
}
