// SambaTech

var hash = "7184af356f1932c5bb5311d8e615a138";

function PlayerSamba(id, title, subtitle){

    var so = new SWFObject("/libc/player/liquid3.swf","mediaplayer",403,234,"9");
    so.addVariable("allowscriptaccess","true");
    so.addParam("allowfullscreen","true");
    so.addVariable("autostart","false");
    so.addVariable("autoLoad","false");            
    so.addVariable("startButton","/imagem/base_thumb-video.png");
    so.addParam("base",".");
	so.addParam("wmode", "opaque");
    so.addVariable("thumbnailPreview","true");
    so.addVariable("customizationFileURL","/video/script/tema1.xml");
    so.addVariable("playerHash",hash);
    so.addVariable("idmedia",id);
    so.write("DivPlayer");
	
	
	document.getElementById('tit_video').innerHTML = title;
	document.getElementById('txt_video').innerHTML = subtitle;
}


