// RANDOM O

var anzahlLogoPops = 68; // Anzahl Os weniger 1

function writeRandomO() {
        logoPopZufall = Math.round(Math.random()*anzahlLogoPops);
        randomO = '<style>#lol-o { background-image: url(images-o/' + logoPopZufall + '.gif) }</style>';
		document.write(randomO);
}

// POP-UPS

function oeffneFenster(URL, name, breite, hoehe, scrollbar) {
 popupWin = window.open(URL, name, "toolbar=no,left=50,top=50,location=no,directories=no,status=no,menubar=no,scrollbars="+scrollbar+",resizable=yes,width="+breite+",height="+hoehe);
}