﻿
// zufallsbanner.js

// Hier die Anzahl der Bilder eintragen
var wie_viele = 8;

// Die nächsten 4 Zeilen nicht ändern
var now = new Date()
var sec = now.getSeconds()
var zufall = sec % wie_viele;
zufall +=1;


/*
ab hier Angaben für die Banner
5 Angaben: Link-URL, Bild-URL, Breite, Höhe, MouseOver-Text
*/

if (zufall==1) {
link_url="http://download.wecogroup.com/datasheets/en/110-F-111_en.pdf";
banner_url="http://pics.wecogroup.com/produkte/neu/neuheit08_en_110F111.jpg";
width="200";
height="220";
TitelText = "Screwless plug-in connector series of 110 in 3.5 mm pitch";
}

if (zufall==2) {
link_url="http://download.wecogroup.com/datasheets/en/110-F-115_en.pdf";
banner_url="http://pics.wecogroup.com/produkte/neu/neuheit08_en_110F115.jpg";
width="200";
height="220";
TitelText = "Screwless plug-in connector series of 110 in 3.5 mm pitch";
}

if (zufall==3) {
link_url="http://download.wecogroup.com/datasheets/en/110-M-241_en.pdf";
banner_url="http://pics.wecogroup.com/produkte/neu/neuheit08_en_110M.jpg";
width="200";
height="220";
TitelText = "Coupler of series 110 in 3.5 mm pitch";
}

if (zufall==4) {
link_url="http://download.wecogroup.com/datasheets/en/140-A-126-SMD_en.pdf";
banner_url="http://pics.wecogroup.com/produkte/neu/neuheit08_en_140A126SMD.jpg";
width="200";
height="220";
TitelText = "Surface-mountable screw terminal in elevator clamping style with a pitch of 5 mm";
}

if (zufall==5) {
link_url="http://download.wecogroup.com/datasheets/en/930-D-SMD_en.pdf";
banner_url="http://pics.wecogroup.com/produkte/neu/neuheit08_en_930DSMD.jpg";
width="200";
height="220";
TitelText = "SMD terminal for real surface mount technology with 3.5 mm pitch";
}

if (zufall==6) {
link_url="http://download.wecogroup.com/datasheets/en/931-SLR-SMD-1,3_en.pdf";
banner_url="http://pics.wecogroup.com/produkte/neu/neuheit08_en_931SLRSMD1-3.jpg";
width="200";
height="220";
TitelText = "Surface-mountable pin strip with a pitch of 3,5 mm";
}

if (zufall==7) {
link_url="http://download.wecogroup.com/datasheets/en/931-SLR-THR_en.pdf";
banner_url="http://pics.wecogroup.com/produkte/neu/neuheit08_en_931SLRTHR.jpg";
width="200";
height="220";
TitelText = "Pin strip with a pitch of 3,5 mm";
}

if (zufall==8) {
link_url="http://download.wecogroup.com/datasheets/en/931-SLR-THR-1,3_en.pdf";
banner_url="http://pics.wecogroup.com/produkte/neu/neuheit08_en_931SLRTHR1-3.jpg";
width="200";
height="220";
TitelText = "Pin strip with a pitch of 3,5 mm";
}



/*
bis hier Angaben für die Banner
*/


function zufallsbanner() {
document.write('<A HREF="' + link_url + '"  TARGET="_blank">');
document.write('<IMG TITLE="' + TitelText + '" SRC="' + banner_url + '" WIDTH="')
document.write(width + '" HEIGHT="' + height + '" ');
document.write('BORDER="0"></A><BR>');
return
}

