var espacio='<td><img src="/SitioWeb/images/spacer.gif" width="6" height="1"></td>'
var separador='<tr><td bgcolor="#FFFFFF" width="6"><img src="/SitioWeb/images/spacer.gif" width="6" height="1"></td><td bgcolor="#FFFFFF" width="134"><img src="/SitioWeb/images/spacer.gif" width="1" height="1"></td></tr>'
var celdai='<td height="18">';
var celdaf='</a></td>';
var blanco='<img src="/SitioWeb/images/spacer.gif" width="6" height="1" border="0">';
                
function mostrarMenuDeptos() {
	var vItemDeptos=[];
	menuText='<table height="100%" width="140" border="0" cellpadding="0" cellspacing="0"	bgcolor="#EFEFEF" class="TextoAzul">';
	//*** Linea de las oportunidades de la tienda
//	menuText+='<tr>';
//	menuText+='<td height="18" colspan="2" width="140"><a class="barraoportunidad" href="../FolletoVirtualAction.do" onmouseover="toolTip98.show(\'floating\')" onmouseout="toolTip98.hide()" >' + blanco + 'Folleto Virtual'+celdaf;
//	menuText+='</tr>';
	menuText+=separador;
	for (i=0; i < vDeptos.length; i++) {
		vItemDeptos=vDeptos[i].split("|");
		menuText+='<tr>';
		menuText+=espacio;
		//menuText+=celdai+'<a class="menudepto" href="javascript:barraCategorias(' + vItemDeptos[0] + ',\'' + vItemDeptos[1] + '\')">'+vItemDeptos[1]+celdaf;
		menuText+=celdai+'<a class="menudepto" href="../VitrinaDeptoAction.do?coddepto=' + vItemDeptos[0] + '&nomdepto=' + vItemDeptos[1] + '">'+vItemDeptos[1]+celdaf;
		menuText+='	</tr>';
		menuText+=separador;
	}	
	menuText+='<tr>'
	menuText+='<td height="100%" width="6"><img src="/images/spacer.gif" width="6" height="1"></td>'
	menuText+='<td height="100%"></td>'
	menuText+='</tr>'
	menuText+='</table>';
	
	document.getElementById("barraDeptos").innerHTML=menuText;
	try {
	scrDeptos.getscrollinc();
	//*** Inicializa la posicion de la zona de scroll
	scrDeptos.heartBeat();
	} catch (e){};
}


function barraCategorias(codtienda, coddepto, nomdepto){
	menuText='<table height="100%" width="100%" border="0" cellpadding="0" cellspacing="0"	bgcolor="#efefef" class="TextoAzul">';	
	menuText+='<tr>';
	menuText+='<td bgcolor="#CCCCCC"><img src="/SitioWeb/images/spacer.gif" width="6" height="1"></td>'
	menuText+='<td align="center" height="18" bgcolor="#CCCCCC"><a class="menudeptoblanco" href="../VitrinaDeptoAction.do?coddepto=' + coddepto + '&nomdepto=' + nomdepto + '">'+nomdepto+celdaf;
	menuText+='	</tr>';
	//*** Linea de las oportunidades por area
	menuText+='<tr>';
	menuText+='<td height="18" colspan="2"><a class="barraoportunidad" href="../CatalogoOportunidadesAction.do?coddepto=' + coddepto +'" onmouseover="toolTip99.show(\'floating\')" onmouseout="toolTip99.hide()">' + blanco +'Oportunidades'+celdaf;
	menuText+='	</tr>';
	menuText+=separador;
	
	for (i=0; i < vCategorias.length; i++) {
		vItemCategorias=vCategorias[i].split("|");
		menuText+='<tr>';
		menuText+=espacio;
		menuText+=celdai+'<a class="menudepto" href="../CatalogoAction.do?codcategoria=' + vItemCategorias[1] + '">'+vItemCategorias[2]+celdaf;
		menuText+='	</tr>';
		menuText+=separador;
	}	
	menuText+='<tr>'
	menuText+='<td height="100%" width="6"><img src="/images/spacer.gif" width="6" height="1"></td>'
	menuText+='<td height="100%"></td>'
	menuText+='</tr>'
	menuText+='</table>';
	
	document.getElementById("barraDeptos").innerHTML=menuText;
	try {
	scrDeptos.getscrollinc();
	//*** Inicializa la posicion de la zona de scroll
	scrDeptos.heartBeat();
	} catch (e){};
}

function mostrarMenuAreasPopUp() {
	var vItemDeptos=[];
	menuText='<table height="100%" width="140" border="0" cellpadding="0" cellspacing="0"	bgcolor="#EFEFEF" class="TextoAzul">';
	//*** Linea de las oportunidades de la tienda
	menuText+='<tr>';
	menuText+='<td height="18" colspan="2" width="140"><a class="barraoportunidad" href="../FolletoVirtualAction.do" onmouseover="toolTip98.show(\'floating\')" onmouseout="toolTip98.hide()" >' + blanco + 'Folleto Virtual'+celdaf;
	menuText+='</tr>';
	menuText+=separador;
	for (i=0; i < vDeptos2.length; i++) {
		vItemDeptos=vDeptos2[i].split("|");
		menuText+='<tr>';
		menuText+=espacio;
		//menuText+=celdai+'<a class="menudepto" href="javascript:barraCategorias(' + vItemDeptos[0] + ',\'' + vItemDeptos[1] + '\')">'+vItemDeptos[1]+celdaf;
		menuText+=celdai+'<a class="menudepto" href="../VitrinaDeptoAction.do?coddepto=' + vItemDeptos[0] + '&nomdepto=' + vItemDeptos[1] + '">'+vItemDeptos[1]+celdaf;
		menuText+='	</tr>';
		menuText+=separador;
	}	
	menuText+='<tr>'
	menuText+='<td height="100%" width="6"><img src="/images/spacer.gif" width="6" height="1"></td>'
	menuText+='<td height="100%"></td>'
	menuText+='</tr>'
	menuText+='</table>';
	
	document.getElementById("barraAreasPopUp").innerHTML=menuText;
}

