//BILDWECHSEL OBEN LINKS

var imagenumber = 3 ;
var randomnumber = Math.random() ;
var rand1 = Math.round( (imagenumber-1) * randomnumber) + 1 ;
images = new Array
images[1] = "pictures/thedalles31.jpg"
images[2] = "pictures/thedalles31.jpg"
images[3] = "pictures/thedalles31.jpg"

var image = images[rand1]


//POPUP FENSTER

function popup(what,w,h)
         {
        window.open(what,'','resizable=no,scrollbars=no,width='+w+',height='+h);
	}

//BILDWECHSEL PER CLICK

function bildwechsel(Bildname,Datei) 
		 {
		 window.document.images[Bildname].src = Datei;
		 } 
