function printArticle( artUrl ){
    behind = window.open(artUrl ,'printwin','height=620,width=590,status=yes,toolbar=yes,directories=no,menubar=no,location=no,resizable=no,scrollbars=yes');
}

function colCh(cellname,mOver) {
	if (document.all) {
        document.all[cellname].style.background = (mOver)?"#FFFFFF":"#CEE4EA";
	} else if (document.getElementById) {
		document.getElementById(cellname).style.background = (mOver)?"#CEE4EA":"#fff" ;
	}
}

function subcolCh(cellname,mOver) {
	//alert("hallo");
	if (document.all) {
        document.all[cellname].style.background = (mOver)?"#E7F2F5":"#FFFFFF";
	} else if (document.getElementById) {
		document.getElementById(cellname).style.background = (mOver)?"#E7F2F5":"#FFFFFF" ;
	}
}


