function movr(src) {
src.style.background= '#cedae1';
src.style.color='#000000';
}
function mout(src) {
src.style.background = '';
src.style.color='#000000';
}

function movr2(src) {
src.style.background= '#FFFFFF';
src.style.cursor = 'pointer';
}
function mout2(src) {
src.style.background = '';
src.style.cursor = 'default';
}

function movrtr(src,clrOver) {
src.style.cursor = 'pointer';
src.bgColor= clrOver;
}
function mouttr(src,clrIn) {
src.style.cursor = 'default';
src.bgColor= clrIn;
}

function movrtr2(src,clrOver) {
src.style.cursor = 'pointer';
src.style.background= clrOver;
}
function mouttr2(src,clrIn) {
src.style.cursor = 'default';
src.style.background= clrIn;
}

function movrtr3(src) {
src.style.cursor = 'pointer';
src.style.background= "#FFFFFF";
}
function mouttr3(src) {
src.style.cursor = 'default';
src.style.background= "";
}

function changeloc(urltarget){
	location.href=urltarget;
}