//-------- Bildwechsel Standard --------//
function wechsel(bild,ort) {
	document.images[ort].src = "../img/" + bild;
}


//-------- Zelle einfärben --------//
function mOver(wo) {
	document.getElementById(wo).style.backgroundColor = "#B9E2E0";
}

function mOut(wo) {
	document.getElementById(wo).style.backgroundColor = "#D4EFEE";
}

function openWin(o){
		window.open('frm_print.asp?site=' + o,'DG','width=600,height=520,left=0,top=0,resizable=yes,scrollbars=yes');
	}