// JavaScript Document
function createPlayer(theFile, theImg, start, icons, theTitle, largura, altura, thePlace) {
	
var so = new SWFObject('flvplayer.swf','player1',largura,altura,'7'); 
so.addParam("allowfullscreen","true"); 
//so.addParam("wmode","transparent");
so.addVariable("enablejs","true");
//so.addVariable('displayheight','190'); 
so.addVariable('file',theFile); 
so.addVariable('usekeys','true'); 
so.addVariable('height',altura); 
so.addVariable('width',largura); 
so.addVariable('backcolor','0xffffff');
so.addVariable('frontcolor','0X638217');				
//so.addVariable('logo','http://placar.abril.com.br/includes/logoplacar.png'); 
//so.addVariable('autostart','true');
so.addVariable("javascriptid","mpl"); 
so.addVariable('linkfromdisplay','true');
		
	if (start) so.addVariable("autostart", "true");
	if (! icons) so.addVariable("showicons", "false");
	if (theImg != "") so.addVariable("image", theImg);
	
	
	if (theTitle != null) {
		var y=window.document.getElementById("theText");
		if (y != null) {
		y.innerHTML=theTitle;
		theTitle.visibility = "hidden";
		}
	}
	so.write(thePlace);
}

