
billede=new Array; 
alt=new Array;
billede[1]="http://beachvolley.dk/gfx/2007/fotos/foto-2.gif"; 
alt[1]="";
billede[2]="http://beachvolley.dk/gfx/2007/fotos/foto-4.gif"; 
alt[2]=""; 
billede[3]="http://beachvolley.dk/gfx/2007/fotos/foto-6.gif"; 
alt[3]=""; 
billede[4]="http://beachvolley.dk/gfx/2007/fotos/foto-8.gif"; 
alt[4]=""; 
billede[5]="http://beachvolley.dk/gfx/2007/fotos/foto-10.gif"; 
alt[5]=""; 
billede[6]="http://beachvolley.dk/gfx/2007/fotos/foto-12.gif"; 
alt[6]="";
billede[7]="http://beachvolley.dk/gfx/2007/fotos/foto-14.gif"; 
alt[7]="";  
billede[8]="http://beachvolley.dk/gfx/2007/fotos/foto-16.gif"; 
alt[8]=""; 
billede[9]="http://beachvolley.dk/gfx/2007/fotos/foto-20.gif"; 
alt[9]=""; 
billede[10]="http://beachvolley.dk/gfx/2007/fotos/foto-22.gif"; 
alt[10]=""; 
billede[11]="http://beachvolley.dk/gfx/2007/fotos/foto-24.gif"; 
alt[11]=""; 
billede[12]="http://beachvolley.dk/gfx/2007/fotos/foto-26.gif"; 
alt[12]=""; 
billede[13]="http://beachvolley.dk/gfx/2007/fotos/foto-28.gif"; 
alt[13]=""; 
billede[14]="http://beachvolley.dk/gfx/2007/fotos/foto-30.gif"; 
alt[14]=""; 
billede[15]="http://beachvolley.dk/gfx/2007/fotos/foto-18.gif"; 
alt[15]=""; 


function ShowPic() {
 
num = Math.random();
num = 1 + ( num * ((billede.length - 1)-1));
num = Math.round(num);
 
document.write("<img src='" + billede[num] + "' border='0' align='right' vspace='4");
document.write("alt='" + alt[num] + "'>");
}
 
 

ShowPic();

