﻿//Bildwechsel oben rechts

//neu
var image = new Array();
var link = new Array();

/** Hier die (Zufalls)-Bilder eintragen. **/
image[1] = '/images/oben/01.jpg';
image[2] = '/images/oben/02.jpg';
image[3] = '/images/oben/03.jpg';
image[4] = '/images/oben/04.jpg';
image[5] = '/images/oben/05.jpg';
image[6] = '/images/oben/06.jpg';
image[7] = '/images/oben/07.jpg';
image[8] = '/images/oben/08.jpg';
image[9] = '/images/oben/09.jpg';
image[10] = '/images/oben/10.jpg';
image[11] = '/images/oben/11.jpg';
image[12] = '/images/oben/12.jpg';
image[13] = '/images/oben/13.jpg';
image[14] = '/images/oben/14.jpg';
image[15] = '/images/oben/15.jpg';

/** Hier die (Zufalls)-Links eintragen. **/
link[1] = 'http://www.clickandburn.de';
link[2] = 'http://www.clickandburn.de';
link[3] = 'http://www.clickandburn.de';
link[4] = 'http://www.clickandburn.de';
link[5] = 'http://www.clickandburn.de';
link[6] = 'http://www.clickandburn.de';
link[7] = 'http://www.clickandburn.de';
link[8] = 'http://www.rot-weiss-erfurt.com/webtrolle';
link[9] = 'http://www.clickandburn.de';
link[10] = 'http://www.clickandburn.de';
link[11] = 'http://www.clickandburn.de';
link[12] = 'http://www.clickandburn.de';
link[13] = 'http://www.clickandburn.de';
link[14] = 'http://www.clickandburn.de';
link[15] = 'http://www.clickandburn.de';

/** Ab hier nichts mehr ändern! **/
var num = Math.random();
var ran = Math.floor((image.length - 1) * num) + 1;



// Quickjump
function QuickJump(Formular)
{ var Element = Formular.Ziel.selectedIndex;
  var Frameziel = Formular.Ziel.options[Element].frameziel;
  if (Formular.Ziel.options[Element].value != 0)
{ if(Frameziel == "extern")
{ window.open(Formular.Ziel.options[Element].value);
}
else
{
location = Formular.Ziel.options[Element].value;
}
}   
}



