function mostrarempresa(anterior){
	var imagenes = new Array("foto1","foto2","foto3","foto4","foto5","foto6");
	
	function enlaceAleatorio(){ 
	    aleat = Math.random() * imagenes.length;
	    aleat = Math.floor(aleat);
	    return aleat;
	}
	num_aleatorio = enlaceAleatorio();
	
	
	
	switch(imagenes[num_aleatorio]){
		case "foto1":
			html = "<div id='dest2'><p style='padding:15px 10px 0 5px;border-bottom:1px dashed white;color:#d9e514'><b>PLANIFICACIÓN Y GESTIÓN <br/>DE RECURSOS HUMANOS</b></p><p style='padding:5px 10px 0 5px;color: #ffffff;'>Asesoramos a nuestros clientes para que puedan gestionar y optimizar el Capital Humano <a href='consultoria.html' class='menusup'>... [+]</a> </p></div><div id='banner'><a href='curso-busca.html'><img src='images/banner-formativa.gif' style='padding-top:12px;' border='0' alt='' /></a></div>"
			break;
		case "foto2":
			html = "<div id='dest2'><p style='padding:15px 10px 0 5px;border-bottom:1px dashed white;color:#d9e514'><b>SOLUCIONES TECNOLÓGICAS<br/> Y E-LEARNING</b></p><p style='padding:5px 10px 0 5px;color: #ffffff;'>Nuestro equipo multidisciplinar compuesto por técnicos y profesionales, analiza y evalúa de forma <a href='consultoria.html' class='menusup'>... [+]</a> </p></div><div id='banner'><a href='curso-busca.html'><img src='images/banner-formativa.gif' style='padding-top:12px;' border='0' alt='' /></a></div>"
			break;
		case "foto3":
			html = "<div id='dest2'><p style='padding:15px 10px 0 5px;border-bottom:1px dashed white;color:#d9e514'><b>DISEÑO E IMPLANTACIÓN<br/> DE PLANES DE IGUALDAD</b></p><p style='padding:5px 10px 0 5px;color: #ffffff;'>Ofrecemos a nuestros clientes el asesoramiento y la colaboración para implementar medidas <a href='consultoria.html' class='menusup'>... [+]</a> </p></div><div id='banner'><a href='curso-busca.html'><img src='images/banner-formativa.gif' style='padding-top:12px;' border='0' alt='' /></a></div>"
			break;
		case "foto4":
			html = "<div id='dest2'><p style='padding:15px 10px 0 5px;border-bottom:1px dashed white;color:#d9e514'><b>REINGENIERÍA DE PROCESOS<br/> Y MEJORA CONTINUA</b></p><p style='padding:5px 10px 0 5px;color: #ffffff;'>Reinvertimos nuestro bagaje profesional y experiencia hacia nuestros clientes, identificándonos <a href='consultoria.html' class='menusup'>... [+]</a> </p></div><div id='banner'><a href='curso-busca.html'><img src='images/banner-formativa.gif' style='padding-top:12px;' border='0' alt='' /></a></div>"
			break;
		case "foto5":
			html = "<div id='dest2'><p style='padding:15px 10px 0 5px;border-bottom:1px dashed white;color:#d9e514'><b>GESTIÓN DE COMUNICACIÓN<br/> INTERNA Y CULTURA CORPORATIVA</b></p><p style='padding:5px 10px 0 5px;color: #ffffff;'>Desde Vértice Training, trabajamos con nuestros clientes para diseñar sistemas de gestión <a href='consultoria.html' class='menusup'>... [+]</a> </p></div><div id='banner'><a href='curso-busca.html'><img src='images/banner-formativa.gif' style='padding-top:12px;' border='0' alt='' /></a></div>"
			break;
		case "foto6":
			html = "<div id='dest2'><p style='padding:15px 10px 0 5px;border-bottom:1px dashed white;color:#d9e514'><b>GESTIÓN DE MOTIVACIÓN<br/> Y SATISFACCIÓN LABORAL</b></p><p style='padding:5px 10px 0 5px;color: #ffffff;'>La clave del éxito empresarial no está solo en contar con los mejores, hay que retenerlos <a href='consultoria.html' class='menusup'>... [+]</a> </p></div><div id='banner'><a href='curso-busca.html'><img src='images/banner-formativa.gif' style='padding-top:12px;' border='0' alt='' /></a></div>"
			break;


	}
	
	document.write(html);
	return num_aleatorio;
}