// JavaScript Document

document.write( "<div id='conlineDiv' onfocus='this.blur()' style='position:fixed; left:0px; bottom:0px; z-index:8000;'>&nbsp;</div>" ) ;

//
// Function sets an HTML cookie
function setCookie( cookieName, cookieValue )
{
	var expiryDuration = new Date();
	expiryDuration.setTime(expiryDuration.getTime() + ( 1000 * 3600 * 12 ) );
	document.cookie = cookieName + "=" + cookieValue + "; expires=" + expiryDuration.toGMTString( ) + ";" ;		
}

//
// Attempts to get an HTML cookie
function getCookie( cookieName )
{
	var name = cookieName ;
	var s = name + "=" ;
	var c = document.cookie ;
	var ca = document.cookie.split( ';' ) ;
	var ret = '' ;
	for( var i = 0 ; i < ca.length ; i ++ )
	{
		var cb = ca[ i ] ;
		while( cb.charAt(0) == ' ') cb = cb.substring(1, cb.length) ;
		if( cb.indexOf(s) == 0 ){ ret = cb.substring(s.length, cb.length) ; }
	}
	return ret ;
}

function renderFlashObject( )
{	
	var fObject2 = "<object data='http://www.commercialsonline.ca/Common/Spokesperson/prjSpokespersonV2.swf" +
"?autostart=true' type='application/x-shockwave-flash' width='502' height='282' align='right'" +
" wmode='transparent'>" +
"	<param name='movie' value='http://www.commercialsonline.ca/Common/Spokesperson/prjSpokespersonV2.swf' />" +
"	<param name='wmode' value='transparent' />" +
"	<param name='AllowedScriptAccess' value='always' />" +
"	<param name='FlashVars' value='flvVideo=http://www.commercialsonline.ca/Common/streaming_videos/Business Link.flv&frameRate=15&playerControls=smallDefaultPack&hControlPlacement=right&vControlPlacement=bottom&useCOButton=1&enableHotSpots=1&hotspotXMLFile=http://www.commercialsonline.ca/Common/configurations/hsl_021709101040.xml&hotspotDisplayOffset=500&enableImageLinks=0&ImageLinksXMLFile=http://www.commercialsonline.ca/Common/configurations/ill_021709101040.xml&ImageLinksDisplayOffset=0&useStepOutAndPause=0&stepOutAndPauseFrames=0&resumePlayButtonStyle=1&resumePlayButtonXCoord=0&resumePlayButtonYCoord=0&startNoSound=0&sndButton=1&sndXCoord=0&sndYCoord=0' />" +
"	<embed src='http://www.commercialsonline.ca/Common/Spokesperson/prjSpokespersonV2.swf' loop='true' width='502'" +
" height='282' align='right' wmode='transparent' FlashVars='flvVideo=http://www.commercialsonline.ca/Common/streaming_videos/Business Link.flv&frameRate=15&playerControls=smallDefaultPack&hControlPlacement=right&vControlPlacement=bottom&useCOButton=1&enableHotSpots=1&hotspotXMLFile=http://www.commercialsonline.ca/Common/configurations/hsl_021709101040.xml&hotspotDisplayOffset=500&enableImageLinks=0&ImageLinksXMLFile=http://www.commercialsonline.ca/Common/configurations/ill_021709101040.xml&ImageLinksDisplayOffset=0&useStepOutAndPause=0&stepOutAndPauseFrames=0&resumePlayButtonStyle=1&resumePlayButtonXCoord=0&resumePlayButtonYCoord=0&startNoSound=0&sndButton=1&sndXCoord=0&sndYCoord=0'>" +
"</object>";

	document.getElementById( "conlineDiv" ).innerHTML = fObject2 ;
}

renderFlashObject( );