function mOvr(src) {
src.style.background= '#FFFFFF';
src.style.border= '1px solid #000000';
src.style.color='#000000';
}
function mOut(src) {
src.style.background = '#b9cbc5';
src.style.border= '1px solid #2d3331';
src.style.color='#2d3331';
}

function movrz(src,bgcol,txtcol) {
src.style.background=bgcol;
src.style.color=txtcol;
src.style.cursor='pointer';
}
function moutz(src,bgcol,txtcol) {
src.style.background =bgcol;
src.style.color=txtcol;
src.style.cursor='default';
}

function popup(url,breite,hoehe){
kl_x=(screen.width-breite)/2;
kl_y=(screen.height-hoehe)/2;
window.open(url,'','width='+breite+',top='+kl_y+',left='+kl_x+',height='+hoehe+',status=yes');
}

function activate (src){
src.style.background="#14202c";
src.style.color="#FFFFFF";
}
function inactivate (src){
src.style.background="#ffffff";
src.style.color="#000000";
}