//define the user config

var embedAttrs = { 
		allowScriptAccess: "always",
		width: 300,
		height: 300,
		salign: "tl",
		wmode: "transparent",
		scale: "default",
		flashVars: ""
};

var clientConfig = {
	 
	 swfurl: "/pub/mandarin/CreativaPlayer.swf",
	 flashPlayerVersion: "10.0.0",
	 flashId:"client2",
	 containerId : "clientContainer2",
	
	 position: "absolute",
	 backgroundColor: "",
	 
	 width: "300",
	 height: "300",
	 
	 x:"50%",
	 y:"350",
	 halign:"",
	 valign:"",
	 
	 playAgainWidth:"120",
	 playAgainHeight:"60" ,	
	 
	 embedAttributes: embedAttrs 
};
	
	
function creationComplete() {
	CreativaSystem.initialize();
	var player = CreativaFactory.createPlayer();
	player.loadPlayer ( clientConfig );
}

 
 
function closePlayer(){
	var player = CreativaFactory.getPlayer( 1 ) ;
	player.hideVideo();
}

window.onload = creationComplete;	
