<!--
function openroom (path,name,width,height,boutils)
	{
	if (boutils == true)
		{
		var mysize="width="+width+",height="+height+"toolbar=yes, menubar=yes,scrollbars=yes,location=yes,directories=yes,status=yes,resizable=yes,left=20,top=100";
		}
	else
		{
		var mysize="width="+width+",height="+height+"toolbar=no, menubar=no,scrollbars=yes,location=no,directories=no,status=yes,resizable=yes,left=20,top=100";
		}
	popupwin = window.open(path, name, mysize);
	popupwin.focus();
	}
//-->








