Ver Mensaje Individual
  #1 (permalink)  
Antiguo 12/01/2008, 21:48
Avatar de Pameliux
Pameliux
 
Fecha de Ingreso: diciembre-2007
Mensajes: 24
Antigüedad: 17 años
Puntos: 0
Sonrisa Banner aleatorio con enlace

Hola!

Este codigo lo encontre aqui, esta bien es como lo quiero en mi sitio, que cada ves que entre a la pagina la imagen sea diferente, pero quiero que cada imagen tenga enlace, que le tengo que poner?

Código:
<html> 
<head> 
    <title>Selección de Banners Aleatorios</title> 
</head> 

<body> 
<SCRIPT LANGUAGE="JavaScript">  
// Realizado por: Fabian Muller modificado por KarlanKas para forosdelweb.com  
// WebExperto.com - Ayuda al webmaster en español  
// Comienzo  

width="95"; //Anchura del banner 
height="50"; //Altura del banner 

banners= new Array(); 
banners[0]="imagenes/hostees/kiss_me.jpg"; 
banners[1]="imagenes/hostees/the_way.jpg"; 
 

totalbanners = banners.length; 
var ahora = new Date() 
var segundos = ahora.getSeconds() 
var ad = segundos % totalbanners; 
seleccionado=banners[ad]; 
localizador=seleccionado.lastIndexOf('.'); 
localizador2=localizador+4 
extension=seleccionado.substring(localizador+1,localizador2);  
archivo=seleccionado.substring(0,localizador); 

document.write("<center>"); 
if (extension=="swf"){ 
flash=seleccionado; 
document.write('<OBJECT CLASSID=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" width=' + width + ' height=' + height + ' CODEBASE=\"http://active.macromedia.com/flash4/cabs/swflash.cab#version=4,0,0,0\">'); 
document.write('<PARAM NAME=\"MOVIE\" VALUE=\"' + flash + '\">'); 
document.write('<PARAM NAME=\"PLAY\" VALUE=\"true\">'); 
document.write('<PARAM NAME=\"LOOP\" VALUE=\"true\">'); 
document.write('<PARAM NAME=\"QUALITY\" VALUE=\"high\">'); 
document.write('<EMBED SRC=' + flash + ' width=' + width + ' height=' + height + ' PLAY=\"true\" LOOP=\"true\" QUALITY=\"high\" PLUGINSPAGE=\"http://www.macromedia.com/shockwave/download/index.cgi? P1_Prod_Version=ShockwaveFlash\">'); 
document.write('</EMBED>'); 
document.write('</OBJECT>');} 
else {document.write('<img src='+seleccionado+' width='+width+' height='+height+'>'); 
document.write('</center>');} 
// Fin 

</SCRIPT> 

<!-- RESTO DE PÁGINA--> 
</body> 
</html>