function popup1(pop){
document.getElementById(pop).style.display="block";
}
function popup(pop){
for (i=1;i<9;i++){
	var popId="pop"+i;
	if (document.getElementById(popId)){
		var popLink="pop"+i+"Link";
		document.getElementById(popId).style.display="none";
		document.getElementById(popLink).style.fontWeight="normal";
		document.getElementById(popLink).style.color="#666666"; <!--//color en el que se quedan todos los links mientras un popup esta activo-->
	}
}
document.getElementById(pop).style.display="block";
var linkSelect=pop+"Link";
var linkSelectObj=document.getElementById(linkSelect);
linkSelectObj.style.fontWeight="normal";
linkSelectObj.style.color="#e51724"; <!--//color en el que se queda el link del popup activo-->
}

function cerrar1(pop){
document.getElementById(pop).style.display="none";
}

function cerrar(pop){
document.getElementById(pop).style.display="none";
var popLink=pop+"Link";
var popLinkObj=document.getElementById(popLink);
popLinkObj.style.fontWeight="normal";
popLinkObj.style.color="#666666"; <!--//color en el que se queda el link del ultimo popup activo una vez cerrado-->
}