// JavaScript Document
function chBGColor(bgcolor,fgcolor) {
    window.document.bgColor = bgcolor;
}
function chFGColor(textfarbe) {
    window.document.fgColor = textfarbe;
    window.document.linkColor = textfarbe;
    window.document.vlinkColor = textfarbe;
    window.document.alinkColor = textfarbe;
}