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

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";
}