// JavaScript Document

function menuOn(where) {
 where.style.backgroundColor="#CCCCCC"; 
 where.style.cursor="hand";
}

function menuOff(where) {
 where.style.backgroundColor="#ffffff";
}


function menuOn3(where) {
 where.style.backgroundColor="#edd3d2"; 
 where.style.cursor="hand";
}

function menuOff3(where) {
 where.style.backgroundColor="#ffffff";
}

var Fenster = null;
function neuesFenster(meineSeite,meinName,w,h,scroll){
LeftPosition = 30;
TopPosition = 30;
settings ='height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars=no,resizable=0'
Fenster = window.open(meineSeite,meinName,settings)
}

function menuOn2(where) {
 where.style.backgroundColor="#d7d4d4"; 
 where.style.cursor="hand";
}

function menuOff2(where) {
 where.style.backgroundColor="#ffffff";
}