<!-- Begin

function openScrollWindow(path,target,width,height,doEscape,fullWindow)
{
	var nPath, cAttributes, nw;

	if (openScrollWindow.arguments.length < 6)
		fullWindow = false

	if (!doEscape)
		nPath = path;
	else
	{	var i;

		nPath = "";
		for(i = 0; i < path.length; ++i)
			nPath = nPath + escape(path.charAt(i));
	}
	
	if (fullWindow)
		cAttributes = 'menubar=yes,toolbar=yes,directories=yes,location=yes,status=yes'
	else
		cAttributes = 'menubar=no,toolbar=no,directories=no,location=no,status=no'

	nw = window.open(nPath,target,'width='+width+',height='+height+',resizable=yes,scrollbars=yes,'+cAttributes);
	nw.focus();
}

//  End -->
