var contents=new Array()
contents[0]='<a href="http://www.herburger-reisen.at/" target="_blank"><img src="fileadmin/sponsoren/sp_herburger.jpg" width="90" height="45" /></a>';
contents[1]='<a href="http://www.auto-skoda.at/" target="_blank"><img src="fileadmin/sponsoren/sp_brugle.jpg" width="90" height="45" /></a>';
contents[2]='<a href="http://www.teamaktiv.at/" target="_blank"><img src="fileadmin/sponsoren/sp_teamaktiv.jpg" width="90" height="45" /></a>';
contents[3]='<a href="http://www.coratop.com/" target="_blank"><img src="fileadmin/sponsoren/sp_coratop.jpg" width="90" height="45" /></a>';
contents[4]='<a href="http://www.cdmediateam.com/" target="_blank"><img src="fileadmin/sponsoren/cdmediateam1.jpg" width="90" height="45" /></a>';
contents[5]='<a href="http://www.samina.com/" target="_blank"><img src="fileadmin/sponsoren/samina.jpg" width="90" height="45" /></a>';
contents[6]='<a href="http://www.neue.at/" target="_blank"><img src="fileadmin/sponsoren/sp_neue1.jpg" width="90" height="45" /></a>';
contents[7]='<a href="http://www.raibadornbirn.at/" target="_blank"><img src="fileadmin/sponsoren/sp_raiba.jpg" width="90" height="45" /></a>';
contents[8]='<a href="http://www.hagn-leone.at/" target="_blank"><img src="fileadmin/sponsoren/hagn1.jpg" width="90" height="45" /></a>';
contents[9]='<img src="fileadmin/sponsoren/klocker_neu.jpg" width="90" height="45" />';
contents[10]='<a href="http://www.akku-maeser.at/" target="_blank"><img src="fileadmin/sponsoren/sp_maeser.jpg" width="90" height="45" /></a>';
contents[11]='<img src="fileadmin/sponsoren/kutzer.jpg" width="90" height="45" />';
contents[12]='<a href="http://www.admiralbet.com/index.aspx?partnerID=ecdornbirn" target="_blank"><img src="fileadmin/sponsoren/sp_admiral.jpg" width="90" height="45" /></a>';
contents[13]='<a href="http://www.karren.at/" target="_blank"><img src="fileadmin/sponsoren/sp_karren.jpg" width="90" height="45" /></a>';
contents[14]='<a href="http://www.uniqa.at/uniqa_at/homepage.do?url=ga_niedertscheider" target="_blank"><img src="fileadmin/sponsoren/sp_uniqa_neu.jpg" width="90" height="45" /></a>';
contents[15]='<a href="http://www.create-sports.com/" target="_blank"><img src="fileadmin/sponsoren/sp_cs.jpg" width="90" height="45" /></a>';
contents[16]='<a href="http://www.mohrenbrauerei.at/" target="_blank"><img src="fileadmin/sponsoren/mohren.jpg" width="90" height="45" /></a>';
contents[17]='<a href="http://www.kritzer-personal.at/" target="_blank"><img src="fileadmin/sponsoren/kritzer1.jpg" width="90" height="45" /></a>';
contents[18]='<a href="http://www.jochumdruck.at/" target="_blank"><img src="fileadmin/sponsoren/sp_jochum.jpg" width="90" height="45" /></a>';
contents[19]='<a href="http://www.ristorante-sanremo.at/" target="_blank"><img src="fileadmin/sponsoren/remo.jpg" width="90" height="45" /></a>';
contents[20]='<a href="http://www.montfortwerbung.com/" target="_blank"><img src="fileadmin/sponsoren/montfort.jpg" width="90" height="45" /></a>';
contents[21]='<a href="http://www.grillshop.at/" target="_blank"><img src="fileadmin/sponsoren/madlener1.jpg" width="90" height="45" /></a>';
contents[22]='<a href="http://www.vkw.at/" target="_blank"><img src="fileadmin/sponsoren/vkw.jpg" width="90" height="45" /></a>';
contents[23]='<a href="http://www.volmobil.at/" target="_blank"><img src="fileadmin/sponsoren/volmobil.jpg" width="90" height="45" /></a>';
contents[24]='<a href="http://www.michaelgunz.at/" target="_blank"><img src="fileadmin/sponsoren/gunz.jpg" width="90" height="45" /></a>';

var i=0
//variable used to contain controlled random number 
var random
var spacing="<br>"
//while all of array elements haven't been cycled thru
while (i<contents.length){
//generate random num between 0 and arraylength-1
random=Math.floor(Math.random()*contents.length)
//if element hasn't been marked as "selected"
if (contents[random]!="selected"){
document.write(contents[random]+spacing)
//mark element as selected
contents[random]="selected"
i++
}
}
