function openWin( windowURL, windowName, windowFeatures ) {
  return window.open( windowURL, windowName, windowFeatures ) ;
}

/*---------------------------------------------------
リンク箇所書式: 
javascript:('リンク先URL','ウインドウ名',横幅,高さ);
---------------------------------------------------*/
function openWin_test( windowURL,windowName,opWidth,opHeight ) {
 window.open(windowURL,windowName,'toolbar=yes,location=yes,status=yes,menubar=yes,scrollbars=yes,resizable=yes,width='+opWidth+',height='+opHeight);
 newWindow.focus()
}

//Full Screen
function openFullScreen(wURL) {
	var browserName=navigator.appName;
	var operating=navigator.platform;
	var version = parseFloat(navigator.appVersion);
	//----- Netscape 4.0+ on Win
	if (browserName.indexOf("Netscape")!=-1 && version>=4.0 && operating.indexOf("Mac")!=-1)
	 {
	 window.open(wURL,'special','titlebar=no,top=0,left=0,width=' + window.screen.availWidth+',height='+window.screen.availWidth+',screenX=0,screenY=0,top=0,left=0')
	 }
	//----- MSIE Mac 
	else if (browserName.indexOf("Microsoft Internet Explorer")!=-1 && operating.indexOf("Mac")!=-1)
	 {
	 window.open(wURL,'special','titlebar=no,top=0,left=0,width=' + window.screen.availWidth+',height='+window.screen.availWidth+',screenX=0,screenY=0,top=0,left=0')
	 }
	//----- Netscape Mac 
	else if (browserName.indexOf("Netscape")!=-1 && operating.indexOf("Mac")!=-1)
	 {
	 window.open(wURL,'special','width='+screen.width+',height='+screen.height+',top=0,left=0');
	 }
	//----- MSIE Win
	else if (browserName.indexOf("Microsoft Internet Explorer")!=-1 && operating.indexOf("Win")!=-1)
	 {
	 //window.open(URLen,windowNamen,'fullscreen=1,top=0,left=0');
	 var win = window.open(wURL,'special','titlebar=no,toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=1,top=0,left=0,width=' + window.screen.availWidth+',height='+window.screen.availHeight+',screenX=0,screenY=0,top=0,left=0')
		 win.resizeTo(screen.width, screen.height);
	 }
	//----- Netscape Win
	else if (browserName.indexOf("Netscape")!=-1 && operating.indexOf("Win")!=-1)
	 {
	 window.open(wURL,'special','width='+screen.width+',height='+screen.height+',top=0,left=0');
	 }
	//-----その他
	else
	 {
	 window.open(wURL,'special');
	 }

}
