//merci a oznog, http://www.trucsweb.com

// nbrIMG = numero de imagenes menos 1 (la tabla array empieza por "0")
var nbrIMG = 7;

var aURL = new Array(nbrIMG+1);
var aIMG = new Array(nbrIMG+1);
var aALT = new Array(nbrIMG+1);

aIMG[0]="http://www.vpacheco.com/images/logos_youtuve/youtube1.jpg";
aIMG[1]="http://www.vpacheco.com/images/logos_youtuve/youtube2.jpg";
aIMG[2]="http://www.vpacheco.com/images/logos_youtuve/youtube3.jpg";
aIMG[3]="http://www.vpacheco.com/images/logos_youtuve/youtube4.jpg";
aIMG[4]="http://www.vpacheco.com/images/logos_youtuve/youtube5.gif";
aIMG[5]="http://www.vpacheco.com/images/logos_youtuve/youtube6.gif";
aIMG[6]="http://www.vpacheco.com/images/logos_youtuve/youtube7.jpg";
aIMG[7]="http://www.vpacheco.com/images/logos_youtuve/youtube8.jpg";



aURL[0]="http://www.youtube.com/profile?user=toldospacheco&view=videos&sort=v";
aURL[1]="http://www.youtube.com/profile?user=toldospacheco&view=videos&sort=v";
aURL[2]="http://www.youtube.com/profile?user=toldospacheco&view=videos&sort=v";
aURL[3]="http://www.youtube.com/profile?user=toldospacheco&view=videos&sort=v";
aURL[4]="http://www.youtube.com/profile?user=toldospacheco&view=videos&sort=v";
aURL[5]="http://www.youtube.com/profile?user=toldospacheco&view=videos&sort=v";
aURL[6]="http://www.youtube.com/profile?user=toldospacheco&view=videos&sort=v";
aURL[7]="http://www.youtube.com/profile?user=toldospacheco&view=videos&sort=v";



aALT[0]="Videos de toldos Pacheco";
aALT[1]="Videos de toldos Pacheco";
aALT[2]="Videos de toldos Pacheco";
aALT[3]="Videos de toldos Pacheco";
aALT[4]="Videos de toldos Pacheco";
aALT[5]="Videos de toldos Pacheco";
aALT[6]="Videos de toldos Pacheco";
aALT[7]="Videos de toldos Pacheco";


function rndPage(){
var rnd = -1;
while (rnd < 0 || rnd > nbrIMG || isNaN(rnd)){
rnd = parseInt(Math.random()*(nbrIMG+1));
}
return rnd;
}
numIMG = rndPage();
AltImagen = aALT[numIMG];
RandomImagen = aIMG[numIMG];
urlImagen =  aURL[numIMG];
document.write("<a href='"+urlImagen+"' target='_blank'><img src='"+RandomImagen+"' alt='"+AltImagen+"' width='50'  border='0' ></a>");