function toggleDiv(id)
{
	var r=document.getElementById(id);
	var x=r.parentNode.parentNode.parentNode.parentNode.parentNode;

	if (r.style.display=="none")
	{
		if ((document.all) && (window.offscreenBuffering))
		{
			r.style.display="block";
			x.style.height="240px";
		}
		else
		{
			r.style.display="inline";
			x.style.height="240px";
		}
	}
	else
	{
		r.style.display="none";
		x.style.height="70px";
	}
	return false;
}



var win=null;
onerror = stopError;
function stopError(){
	return true;
}

function anmeldung1109() {
	myleft=20;
	mytop=20;
	settings="width=640,height=480,top=" + mytop + ",left=" + myleft + ",scrollbars=no,location=no,directories=no,status=no,menubar=no,toolbar=no,resizable=no,dependent=no";
	win=window.open("http://www.zahnigroups.de/tools/kontakt_1109/","Ameldeformular",settings);
	win.focus();
}