function ArticulateOnline_Launch(url, documentType, bChromeless, bResize)
{
	var nWidth = screen.availWidth;
	var nHeight = screen.availHeight;
	var nSlideNum = 1;
	
	// Get the slide number
	
	// Get the width
	// if(documentType != 'quiz')
	// always launch pres size for guestbook
	{
		if (nWidth > 820)
		{
			nWidth = 980;
			nHeight = 640;
		}
	}
	/*else
	{
		nWidth = 780;
		nHeight = 580;
	}*/

	// 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);
}