<!-- Articulate Presenter Lives In Here



// Browser Detection
var NS4 = (navigator.appName.indexOf("Netscape")>=0 && parseFloat(navigator.appVersion) >= 4 && parseFloat(navigator.appVersion) < 5)? true : false;
var IE4 = (document.all)? true : false;
var NS6plus = (parseFloat(navigator.appVersion) >= 5 && navigator.appName.indexOf("Netscape")>=0 )? true: false;
var isMac = (navigator.appVersion.indexOf("Mac")!=-1) ? true : false;
var IEmac = ((document.all) && (isMac)) ? true : false;
var IE4plus = (document.all) ? true : false;
var IE5 = ((document.all)&&(navigator.appVersion.indexOf("MSIE 5.")!=-1)) ? true : false;
var IE6 = ((document.all)&&(navigator.appVersion.indexOf("MSIE 6.")!=-1)) ? true : false;
var IE7 = ((document.all)&&(navigator.appVersion.indexOf("MSIE 7.")!=-1)) ? true : false;
var Safari = (isMac &&(navigator.appVersion.indexOf("Safari")!=-1)) ? true : false;

var Opera7plus = ((document.all)&&(navigator.userAgent.indexOf("Opera 7")!=-1)) ? true : false;
var FF1 = (navigator.userAgent.indexOf("Firefox\/1")!=-1) ? true : false;
var Opera = (navigator.userAgent.indexOf("Opera")!=-1) ? true : false;
var Mozilla = (NS6plus && (navigator.userAgent.indexOf("Netscape") < 0));

var NS7_2Plus = false;
var Mozilla1_7Plus = false;

var isLinux = (navigator.userAgent.indexOf("Linux") != -1);
var isWindows = (!isMac && !isLinux)


// Find the version of NS or Mozilla
if (NS6plus)
{
	var nPos = 0;
	var strUserAgent = navigator.userAgent;
	var nReleaseDate = 0;
	
	strUserAgent = strUserAgent.toLowerCase();
	nPos = strUserAgent.indexOf("gecko/");

	if(nPos >= 0)
	{
		var strTemp = strUserAgent.substr(nPos + 6);
		nReleaseDate = parseFloat(strTemp);
	}

	if (strUserAgent.indexOf("netscape") >= 0)
	{
		if (nReleaseDate >= 20040804)
		{
			NS7_2Plus = true;
		} 
	}
	else
	{
		if (nReleaseDate >= 20040616)
		{
			Mozilla1_7Plus = true;
		} 		
	}
}

//windows sp2:
var IESP2 = false;
if ((window.navigator.userAgent.indexOf("MSIE")) && window.navigator.userAgent.indexOf("SV1") > window.navigator.userAgent.indexOf("MSIE")) 
{
	IESP2 = true;
}

// Template Vars
var g_bFillScreen 	= false;
var g_bResizeOptimal 	= true;
var g_bLMS 		= false;
var g_bWebObject 	= true;
var g_bScaleSwf		= true;
var g_strBgColor	= "6c6c6c";

if (g_bFillScreen && g_bResizeOptimal)
{
	g_bOptimal = false;
}

if (!(IE5 || IE6 || IE7 || FF1 || NS7_2Plus || Mozilla1_7Plus) || Opera || isLinux)
{
	g_bWebObject = false;
}


// Init
var g_nWidth;		// was aw
var g_nHeight;		// was ah
var g_bIs800 = false;
var currentDisplayMode = "1"; //displaymode

g_nWidth=screen.availWidth;
g_nHeight=screen.availHeight;

if (g_nWidth < 840) 
{
	g_bIs800 = true;
	g_bFillScreen = true;
	g_bScaleSwf = true;
}

function debug()
{
}

// Reposition the window
function reposition() {
	var x = 0;
	var y = 0;

	if (!g_bFillScreen)
	{
		g_nWidth = 1400;
		g_nHeight = 783;

		x = (screen.availWidth - g_nWidth) / 2;
		y = (screen.availHeight - g_nHeight) / 2;

		if (!g_bScaleSwf)
		{
			g_nWidth += 20;
			g_nHeight += 5;
		}
	}

	if (x < 0)
	{
		x = 0;
	}
	if (y < 0)
	{
		y = 0;
	}

	if (g_nWidth > screen.availWidth)
	{
		g_nWidth = screen.availWidth;
	}
	if (g_nHeight > screen.availHeight)
	{
		g_nHeight = screen.availHeight;
	}



	top.window.moveTo(x, y);
	top.window.resizeTo(g_nWidth,g_nHeight);
	top.window.focus();
}

// This function is used to make sure the document height and not the 
function reposition2() 
{
	var nW = 0;
	var nH = 0;
	var nNewWidth = 0;
	var nNewHeight = 0;
	var x = 0;
	var y = 0;

	if (document.body.clientWidth && !isNaN(document.body.clientWidth) && !Mozilla)
	{
		nW = document.body.clientWidth;
		nH = document.body.clientHeight;
	}
	else
	{
		nW = window.innerWidth;
		nH = window.innerHeight;
	}
	
	nNewWidth = g_nWidth + (g_nWidth - nW);
	nNewHeight = g_nHeight + (g_nHeight - nH);

	if (!g_bScaleSwf && NS6plus && !NS7_2Plus && !Mozilla)
	{
		nNewWidth +=15;
	}

	if (Mozilla)
	{
		nNewWidth += 0;
	}
	
	if (IE7)
	{
		nNewHeight+= 40;
	}

	if (nNewWidth > screen.availWidth)
	{
		nNewWidth = screen.availWidth;
	}
	if (nNewHeight > screen.availHeight)
	{
		nNewHeight = screen.availHeight;
	}

	x = (screen.availWidth - nNewWidth) / 2;
	y = (screen.availHeight - nNewHeight) / 2;

	if (x < 0)
	{
		x = 0;
	}
	if (y < 0)
	{
		y = 0;
	}


	if (nNewHeight - g_nHeight > 20)
	{
		g_nWidth = nNewWidth;
		g_nHeight = nNewHeight;
		top.window.moveTo(x, y);
		top.window.resizeTo(nNewWidth, nNewHeight);
	}

}

if (g_bResizeOptimal || g_bFillScreen)
{
	// Call to reposition
	reposition();
}

if (g_bResizeOptimal)
{
	// Call Reposition2
	window.onload = reposition2;
}

// -->
