// magia para os videos

function close_div(div)
{
  document.getElementById(div).style.display = document.getElementById(div).style.display=='none' ? '' : 'none'
}
function inserir(id_div,focus)
{

  document.getElementById(id_div).style.display = '';
  document.getElementById(focus).focus();
  this.scrollbars.visible=false;
}
function showObject(div_name) {

  document.getElementById(div_name).style.display = document.getElementById(div_name).style.display=='none' ? '' : 'none'

}
function w_h(div_name)
{
  document.getElementById(div_name).style.width=screen.availWidth-25;
  document.getElementById(div_name).style.height=screen.availHeight+200;
}
function w_c(div_name)
{
  document.getElementById(div_name).style.left=screen.availWidth/2-200;
  document.getElementById(div_name).style.top=screen.availHeight/2-200;
}
function parar()
{
//alert(window.location.href)
  //document.getElementById('flashvars').value = "config={videoFile: '',autoPlay:false,videoHeight: 240, videoWihth: 320,progressBarColor1: 0xe1f6c1,bufferBarColor1: 0xe1f6c1,loop: false,hideControls: true,splashImageFile: './img.jpg',scaleSplash: true}";
history.go(0)
}
function parar_flv()
{
setTimeout("history.go(0)",300);

}