function AssistaVideoEmbed(url,txt){
	if (url!=""){
		url = "<div id='dv_vdeo' style='float:left; width:340px; height:300px; text-align:left; z-index:-100;'>" + url + "</div>";
		if (txt!=" " && txt!=""){
			url = url + "<div id='txtVideo' style='width:340px; float:left; font-style: italic; text-align:left; background-color: #F4F4F4; margin-top:0.4em;' class='trebuchet02'><div style='margin:0.4em;'>"+ txt +"</div></div>"
		}
	
		document.getElementById("dv_txt_nota").style.width='450px';
		document.getElementById("dv_txt_nota").style.marginLeft='12em';		

		document.getElementById("exbVideo").style.marginLeft='-12em';		
		document.getElementById("exbVideo").style.width='340px';
		document.getElementById("exbVideo").style.height='350px';		
		document.getElementById("exbVideo").style.display='block';
		document.getElementById("exbVideo").style.visibility='visible';
		document.getElementById("exbVideo").innerHTML = url;	
	}
}

function AssistaVideo(url,txt,target,ini){
	if (url!=""){
		
		document.getElementById("dv_txt_nota").style.width='450px';
		document.getElementById("dv_txt_nota").style.marginLeft='12em';		

		document.getElementById("exbVideo").style.marginLeft='-12em';
		document.getElementById("exbVideo").style.display='block';
		document.getElementById("exbVideo").style.visibility='visible';
		
		if (navigator.appName.indexOf('Netscape') == -1) {
			document.getElementById("txtVideo").style.visibility='visible';
			document.getElementById("txtVideo").innerHTML = txt;
			document.getElementById("objVideo").filename = url;
			if (ini!=0){
				window.setTimeout('document.getElementById("objVideo").play()', 2500);
			}
		} else {
			if (target!=0){
				vLNK = 'video.asp?lnk='+url+'&txt='+txt;
				window.open(vLNK, 'BANDNEWSTV_VIDEO', 'left=100, top=100, width=320, height=310,status=no,toolbar=no,menubar=no,titlebar=no,resizable=no,scrollbars=auto');			
			}else{
				document.getElementById("txtVideo").style.visibility='visible';
				document.getElementById("txtVideo").innerHTML = txt;
				document.objVideo.src = url;
				document.objVideo.filename = url;
				if (ini!=0){
					window.setTimeout('document.objVideo.Play()', 4500);
				}
			}
		}
	} 
}
