/* fairwind JavaScript Library *//* YK 2007/5/17               *//* last updated 2007/5/17     */function FWWindow(FWurl,FWname,FWwidth,FWheight,FWtoolbar,FWlocation,FWstatus,FWscroll,FWmenu,FWresize) {	FWstr = "width=" + FWwidth;	FWstr+= ",height=" + FWheight;	if(FWtoolbar)FWstr+= ",toolbar="+"yes";	if(FWlocation)FWstr+= ",location="+"yes";	if(FWstatus)FWstr+= ",status="+"yes";	if(FWscroll)FWstr+= ",scrollbars="+"yes";	if(FWmenu)FWstr+= ",menubar="+"yes";	if(FWresize)FWstr+= ",resizable="+"yes";	window.open(FWurl,FWname,FWstr);}