// Java Document<script LANGUAGE="JavaScript">
function LaunchPresentation(url, bChromeless, bResize)
{
	var nWidth = screen.availWidth;
	var nHeight = screen.availHeight;

	// Get the width
	if (nWidth > 820)
	{
		nWidth = 980;
		nHeight = 640;
	}
var strOptions = "width=" + nWidth +",height=" + nHeight;
strOptions += ",resizable=no";
strOptions += ",status=no,toolbar=no,location=no,menubar=no,scrollbars=no";

// Launch the URL
window.open(url+"player.cfm","_blank",strOptions);
}
