function bcolorMouseEvent(that,color)
{

	that.style.background = color;

}

function bcolorInputField(that,color)
{

	that.style.backgroundColor = color;

}

function openwin(Adresse) {
	var winW = 640, winH = 460;

	if (parseInt(navigator.appVersion)>3) {
	 if (navigator.appName=="Netscape") {
	  winW = window.innerWidth;
	  winH = window.innerHeight;
	 }
	 if (navigator.appName.indexOf("Microsoft")!=-1) {
	  winW = document.body.offsetWidth;
	  winH = document.body.offsetHeight;
	 }
	}


	MeinFenster = window.open(Adresse, "Window", "height="+(winH-50)+"px,width="+(winW-50)+"px,toolbar=yes,menubar=no,location=no,status=yes,scrollbars=yes,resizable=no,dependent=yes");
	MeinFenster.focus();
}