//Mapeamento Abril
//Lista de TAGs
var lc = new Array
lc["home"] = "educar/home|Top,Bottom,Position2,Right1,x11,x12,x13,x15,x16,x17,x18,x50";
lc["indicadores"] = "educar/indicadores|Top,Bottom,Position2,Right1,x11,x12,x13,x15,x16,x17,x18,x50";
lc["institucional"] = "educar/institucional|Top,Bottom,Position2,Right1,x11,x12,x13,x15,x16,x17,x18,x50";
lc["aprendizagem"] = "educar/aprendizagem|Top,Bottom,Position2,Right1,x11,x12,x13,x15,x16,x17,x18,x50";
lc["denuncia"] = "educar/denuncia|Top,Bottom,Position2,Right1,x11,x12,x13,x15,x16,x17,x18,x50";
lc["istodacerto"] = "educar/istodacerto|Top,Bottom,Position2,Right1,x11,x12,x13,x15,x16,x17,x18,x50";
lc["politica-publica"] = "educar/politica|Top,Bottom,Position2,Right1,x11,x12,x13,x15,x16,x17,x18,x50";
lc["comportamento"] = "educar/comportamento|Top,Bottom,Position2,Right1,x11,x12,x13,x15,x16,x17,x18,x50";
lc["gestao-escolar"] = "educar/gestao|Top,Bottom,Position2,Right1,x11,x12,x13,x15,x16,x17,x18,x50";
lc["leitura"] = "educar/leitura|Top,Bottom,Position2,Right1,x11,x12,x13,x15,x16,x17,x18,x50";
lc["colaboradores"] = "educar/colaboradores|Top,Bottom,Position2,Right1,x11,x12,x13,x15,x16,x17,x18,x50";
lc["blog"] = "educar/blog|Top,Bottom,Position2,Right1,x11,x12,x13,x15,x16,x17,x18,x50";
lc['hotsite-indicadores'] = "educar/indicadores|Top,Bottom,Position2,Right1,x11,x12,x13,x15,x16,x17,x18,x50";


//Lista de exceo
var le = new Array
le[0]  = "br/index|educar/home|Top,Bottom,Position2,Right1,x11,x12,x13,x15,x16,x17,x18,x50";
le[1]  = "br/|educar/home|Top,Bottom,Position2,Right1,x11,x12,x13,x15,x16,x17,x18,x50";	
le[2]  = "/hotsites/camarote2008|especiais/educarparacrescer/camarote|Top,x10,x11,x12,x13,x15,x50,x17";
le[3]  = "/hotsites/looks_educarparacrescer/verao2007/|educarparacrescer/hotsites|Top,Bottom,Position2,Right1,x50,x17";
le[4]  = "/hotnews/camarote2008|especiais/educarparacrescer/camarote|Top,x10,x11,x12,x13,x15,x50,x17";
le[5]  = "/premio/cinema|especiais/educarparacrescer/premio_cinema_2008|Top,x11,x12,x17";
le[6]  = "/jogo/cruzada|educarparacrescer/jogo/cruzada|Top,Bottom,Position2,Right1,x50,x17";
//le[7]  = "/hotsite-indicadores/|educarparacrescer/hotsites|Top,Bottom,Position2,Right1,x50,x17";



//lc["premio_cinema"]  = "especiais/educarparacrescer/premio_cinema_2008|Top,x11,x12";
//lc["premio_educarparacrescer"]  = "especiais/educarparacrescer/premio_educarparacrescer|Top,x10,x11,x12,x13,x15";



//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 ABR_page = PrsStr(le[i],1) ;
      var ABR_pos = PrsStr(le[i],2) ;
	  bEx = true ;
	}

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

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

