function mostrarempresa(anterior){
	var imagenes = new Array("foto1","foto2","foto3");
	
	function enlaceAleatorio(){ 
	    aleat = Math.random() * imagenes.length;
	    aleat = Math.floor(aleat);
	    return aleat;
	}
	num_aleatorio = enlaceAleatorio();
	
	
	


    switch(imagenes[num_aleatorio]){
		case "foto1":
			html = "<img src='/images/indexb_03.jpg' border='0'>"
			break;
		case "foto2":
			html = "<img src='/images/foto2.jpg' border='0'>"
			break;
		case "foto3":
			html = "<img src='/images/foto3.jpg' border='0'>"
			break;
	}
		
	document.write(html);
	return num_aleatorio;
	
}