function design()
{
//	alert(document.getElementById("inhalt").offsetHeight);
	if(browser)idHdl.style.top="155px";
	else idHdl.style.top="175px";
	cv2.width=700;//cvb;
	cv2.height=idIh.offsetHeight+280;
	if (cv2.getContext)
	{
		cv2 = cv2.getContext('2d');
//logo		
		cv2.fillStyle = "rgba(255,255,255,0.6)";
		cv2.beginPath();
		rundeck(cv2,idLgt.offsetLeft+3,idLgt.offsetTop-1,idLgt.offsetWidth,idLgt.offsetHeight+2,0,15,15,0);
		cv2.fill();
//balken links
		cv2.fillStyle = "rgba(255,255,255,0.6)";
		cv2.beginPath();
		rundeck(cv2,3,70,43,150,30,0,0,30);
		cv2.fill();
//Texthintergrund
		cv2.fillStyle = "rgb(0,0,0)";
		cv2.beginPath();
		cv2.fillRect( idIh.offsetLeft, idIh.offsetTop, idIh.offsetWidth, idIh.offsetHeight );
		cv2.fill();
//Hauptfeld Hintergrund
		cv2.fillStyle = "rgba(255,255,255,0.8)";
		cv2.beginPath();
		rundeck(cv2,idIh.offsetLeft-40,idIh.offsetTop-40,idIh.offsetWidth+80,idIh.offsetHeight+80,0,40,40,40);
		cv2.fill();
//Chathintergrund
	}
}
