/* fairwind JavaScript Library */
/* YK 2006/10/10               */
/* last updated 2006/10/10     */
/* jQuery をインクルード       */
/* last updated 2008/9/3       */


function YUWindow(	YUurl,
					YUname,
					YUwidth,
					YUheight,
					YUtoolbar,
					YUlocation,
					YUstatus,
					YUscroll,
					YUmenu,
					YUresize ) {
	YUstr = "width=" + YUwidth;
	YUstr += ", height=" + YUheight;
	if ( YUtoolbar ) YUstr += ", toolbar=" + "yes";
	if ( YUlocation ) YUstr += ", location=" + "yes";
	if ( YUstatus ) YUstr += ", status=" + "yes";
	if ( YUscroll ) YUstr += ", scrollbars=" + "yes";
	if ( YUmenu ) YUstr += ", menubar=" + "yes";
	if ( YUresize ) YUstr += ", resizable=" + "yes";
	window.open( YUurl, YUname, YUstr );
}