// JavaScript Documentfunction randombackground() {	var bgcolorlist = new Array("#00FF00", "#FFFF22", "#80FF80", "#FF9999", "#999999", "#FF6600", "#FF33FF", "#DDDD00", "#FF33CC", "#00FFFF", "#9966FF", "#66FF99", "#6699FF", "#FF2200", "#6633FF", "#99CC33", "#FFCCCC", "#CC3333", "#FF9933", "#FFCC00", "#CCCC00", "#CCFF00", "#33FF00", "#99FF99", "#99CCCC", "#66CCCC", "#33FFCC", "#CCFFFF", "#33FFFF", "#0099FF", "#9999CC", "#3366FF", "#9999FF", "#CC99FF", "#996699", "#FFCCFF", "#CC66FF", "#CC00CC", "#FF0099", "#CC9999", "#FF66CC", "#FFCCCC", "#FF3366", "#FF0066", "#CC3399")	randomcolor = bgcolorlist[Math.floor(Math.random()*bgcolorlist.length)];	document.getElementById("kop").style.backgroundColor = randomcolor ;	if (document.getElementById("line1")) document.getElementById("line1").style.backgroundColor=randomcolor ;	if (document.getElementById("line2")) document.getElementById("line2").style.backgroundColor=randomcolor ;	if (document.getElementById("line3")) document.getElementById("line3").style.backgroundColor=randomcolor ;	if (document.getElementById("line4")) document.getElementById("line4").style.backgroundColor=randomcolor ;	if (document.getElementById("line5")) document.getElementById("line5").style.backgroundColor=randomcolor ;	if (document.getElementById("line6")) document.getElementById("line6").style.backgroundColor=randomcolor ;	if (document.getElementById("line7")) document.getElementById("line7").style.backgroundColor=randomcolor ;	if (document.getElementById("line8")) document.getElementById("line8").style.backgroundColor=randomcolor ;	if (document.getElementById("line9")) document.getElementById("line9").style.backgroundColor=randomcolor ;}function openLink(whichLink,features) {	window.open(whichLink,'siteWindow',features);}function scaleBackground() {	imageW = document.body.clientWidth;	imageH = document.body.clientHeight;	imageRatio = imageW / imageH;	whichRatio = 1024 / 768;	if (whichRatio > imageRatio) {		document.getElementById("backgroundImage").width = document.getElementById("backgroundImage").height * whichRatio;		document.getElementById("backgroundImage").height = imageH;	} else {		document.getElementById("backgroundImage").width = imageW;		document.getElementById("backgroundImage").height = document.getElementById("backgroundImage").width / whichRatio;	}}//-->