<!--
//Funções Javascript Comuns

//Pop Up
function popup(a,b,x,y)
{
	window.open(a,b,'width=' + x + ',height=' + y + ',resizable=0,status=0,menubar=0,scrollbars=0');
}

function popup_sportv(a,b,x,y)
{
	window.open(a,b,'width=' + x + ',height=' + y + ',resizable=0,status=0,menubar=0,scrollbars=1');
}

//Abrir URL
function OpenURL(obj) 
{ var varIndex = obj.selectedIndex; 
  if (varIndex == 0) 
  {} 
  else 
  { 
    location.href = obj.options[varIndex].value;
    return false; 
  }
} 
//--> 

<!--
//Funções Javascript Comuns

//Pop Up
function popupVideo(a,b,c,x,y)
{
	window.open(a + '?video_id=' + c,b,'width=' + x + ',height=' + y + ',resizable=0,status=0,menubar=0,scrollbars=0');
}

//Abrir URL
function OpenURLVideo() 
{ var varIndex = document.Navegador.Canais.selectedIndex; 
  if (varIndex == 0) 
  {} 
  else 
  { 
    location.href = document.Navegador.Canais.options[varIndex].value;
    return false; 
  }
} 
//--> 