<!-- 
var state = 'block'; 

function mostra(layer_ref) { 

if (document.all) { //IS IE 4 or 5 (or 6 beta) 
eval( "document.all." + layer_ref + ".style.display = state"); 
} 
if (document.layers) { //IS NETSCAPE 4 or below 
document.layers[layer_ref].display = state;
} 
if (document.getElementById &&!document.all) { 
hza = document.getElementById(layer_ref); 
hza.style.display = state; 
} 
} 

function streaming_audio(qualidade){
window.open('streaming_ver.php?tipo=audio&qualidade='+ qualidade +'','playerehd','status=no,resizable=no,scrollbars=no,menubar=no,width=250,height=270,left=5,top=5');
}

function streaming_video(qualidade){
window.open('streaming_ver.php?tipo=video&qualidade='+ qualidade +'','playerehd_video','status=no,resizable=no,scrollbars=no,menubar=no,width=350,height=470,left=5,top=5');
}
//--> 
