

function capaTransparente(identificador, claseIE) 
   {
		if ((( navigator.userAgent.indexOf("msie")!=-1 )&&(navigator.userAgent.indexOf("msie 7.0")==-1))||(( navigator.userAgent.indexOf("MSIE")!=-1 )&&(navigator.userAgent.indexOf("MSIE 7.0")==-1))){
			var laCapa = document.getElementById(identificador);
			laCapa.className = claseIE;
		} 
   }
