
/*
 * This function will be invoked once the window was loaded
 */
 function loadHelper() {
 	jshelper.url = "http://cdn.flashvideos.com.au/creativa/cplayer/jshelper.swf";
	jshelper.readyCallback = displayPlayer;
 	jshelper.create();
}

 
 
function displayPlayer() {
 	jshelper.swf = getSWF(  jshelper.name );
 	var player  = CreativaFactory.createPlayer();
	player.loadPlayer( "http://cdn.flashvideos.com.au/creativa/videos/OHL/calculator_1/content.xml") ;
}


function showContent2 () {
	
	
	var player = CreativaFactory.getPlayer( 1 ) ;
	
	if( player && player.videoRemoved != true ) {
		player.videoRemoved = true ;
		 
		player.hidePlay();
	}
	
	player = CreativaFactory.getPlayer( 2 ) ;
	
	if( player ) {
	 
		player.hidePlay();
		player.displayVideo();
		
	}  else {
		player = CreativaFactory.createPlayer();
		player.loadPlayer("http://cdn.flashvideos.com.au/creativa/videos/OHL/calculator_2/content.xml");
	}
}



function clientCallback ( params ) {
	 
}
 
window.onload = loadHelper;