function createplayer(theFile, go, theID) {
//var so = new SWFObject('http://200.161.120.211/mastercana/video/player.swf','playerID','450','325','8');
var so = new SWFObject('../video/player.swf','playerID','450','325','8');
so.addParam('allowscriptaccess','always');
so.addParam('allowfullscreen','true');
so.addVariable("backcolor","0x000000");
so.addVariable("frontcolor","0xE9E5DC");
so.addVariable("lightcolor","0x0000ff");
so.addVariable('height','325');
so.addVariable('width','450');
so.addVariable("file",theFile);
//so.addVariable('javascriptid',theID);
so.addVariable('bufferlength','10');
so.addVariable('showstop','true');
so.addVariable('searchbar','false');
so.addVariable('usefullscreen','true');
so.addParam('wmode','transparent');

//so.addVariable('image','../images/selo_master.png');


if (go) { so.addVariable("autostart","true");}
so.write("player");
}


