//Verifica o canal 

var theURL = new String (document.location) ;

theURL = theURL + "chk" ;

var bEx = false ;

if (typeof le != 'undefined') 
	for (i=0;i<le.length;i++)  
	if (theURL.indexOf( PrsStr(le[i],0) ) > -1 ) {
      var theCh    = PrsStr(le[i],1) ;
      var theTagCh = PrsStr(le[i],2) ;
	  bEx = true ;
	}

if (!bEx) {
	var auxPath = theURL.split("/") ;
	var chName = auxPath[3] ;
	if ((typeof lc != 'undefined') && (lc[chName]!=null)) {
	   var theCh    = PrsStr(lc[chName],0) ;
	   var theTagCh = PrsStr(lc[chName],1) ;
	} else {
	   var theCh    = PrsStr(lc["interna"],0) ;
	   var theTagCh = PrsStr(lc["interna"],1) ;
	}
}



function PrsStr(ct,id) {
  var str=ct.split('|');
  return str[id] ;
}