<!--

function mudamusica(mm){
window.top.BottomFr.document.track.Stop();
window.top.BottomFr.document.track.SetURL(mm);
window.top.BottomFr.document.track.Rewind();
window.top.BottomFr.document.track.Play();
window.top.BottomFr.document.track.SetIsLooping(true);
return false;
}


function playclik(sourceId) {   
if (sourceId=='video1') 
{
vid1=document.getElementById("imgplay1");
vid1.src='imagens/aniplay.gif';
vid2=document.getElementById("imgplay2");
vid2.src='imagens/play1.jpg';
vid3=document.getElementById("imgplay3");
vid3.src='imagens/play1.jpg';
} 

if (sourceId=='video2') 
{
vid1=document.images["imgplay1"];
vid1.src='imagens/aniplay.gif';
vid2=document.images["imgplay2"];
vid2.src='imagens/play1.jpg';
vid3=document.images["imgplay3"];
vid3.src='imagens/play1.jpg';
}   

if (sourceId=='video3') 
{
document.imgplay1.src='imagens/play1.jpg';
document.imgplay2.src='imagens/play1.jpg';
document.imgplay3.src='imagens/aniplay.gif';
}   

return false;
}


function stopclik() {   
document.imgplay1.src='imagens/play1.jpg';
document.imgplay2.src='imagens/play1.jpg';
document.imgplay3.src='imagens/play1.jpg';

return false;
}




function resetVideo(divId) {  
if (typeof(divId)=="string") { divId=document.getElementById(divId); }  
if (divId.innerHTML) { 
	org=divId.innerHTML;    
	divId.innerHTML='';    
	divId.innerHTML=org;  
	}
return false;
}

//-->