function MakeArray(n){
	this.length=n;
	for( var i=1; i<= n; i++){
		this[i]=0;
	return this;
	}
}
function Publicidad(){
	var URL=new MakeArray(11);
	var NumAleatorio = Math.floor(Math.random()*11);	
	var foto = "GIFs/Publicidad"+NumAleatorio+".gif";  
	// Aqui se pone los enlaces
    URL[1]="http://www.mayrena.com/Empresas/Tachi.htm";
    URL[2]="http://www.mayrena.com";
	URL[3]="http://www.grillosl.com";
	URL[4]="http://www.mayrena.com";
	URL[5]="http://www.mayrena.com";
	URL[6]="http://www.canamoartefloral.es";
	URL[7]="http://www.msvision.es";
	URL[8]="http://www.mayrena.com";
	URL[9]="http://www.mayrena.com";
	URL[10]="http://www.mayrena.com";
	URL[11]="http://www.mayrena.com";

	var urlAleatorio=URL[NumAleatorio+1];
   	document.write("<A href="+urlAleatorio+"><img src="+ foto +" border=0 alt=Publicidad > </A>");
}



