	function NewColor(obj,bgcol) {
		if(obj.style) {
			obj.style.backgroundColor=bgcol; //Background-Color
		}
	}

	function classChange(styleChange, item) {
		item.className=styleChange;
	}

    function PopUp(URL, Weite, Hoehe, Dats) {
		if ((screen.height - 80) < Hoehe) {
			Hoehe = screen.height - 80;
		}
		var cFenster = window.open(URL + "?" + Dats, "pCnt", "width="+Weite+",height="+Hoehe+",scrollbars=yes,resizable=yes,toolbar=no,directories=no,menubar=no,location=no,status=no");
	}


