function ArticulateOnline_Launch(url, documentType, bChromeless, bResize, setWidth, setHeight)
{
	var nWidth = screen.availWidth;
	var nHeight = screen.availHeight;
	var nSlideNum = 1;
	
	// Get the slide number
	
	// always launch pres size for guestbook
	if(documentType != 'story')
	{
		if (nWidth > 820)
		{
			nWidth = 980;
			nHeight = 640;
		}
	}
	else
	{
		nWidth = Math.min(setWidth, nWidth) + 20;
		nHeight = Math.min(setHeight, nHeight);
	}

	// BUild the options string
	var strOptions = 'width=' + nWidth +',height=' + nHeight;
	if (bResize)
	{
		strOptions += ',resizable=yes'
	}

	if (bChromeless)
	{
		strOptions += ',status=0,toolbar=0,location=0,menubar=0,scrollbars=1';
	}
	else
	{
		strOptions += ',status=1,toolbar=1,location=1,menubar=1,scrollbars=1';
	}

	// Launch the URL
	window.open(url, '_blank', strOptions);
}
