function posme()
	{

		var t0 = document.getElementById('pointing1');
		var t1 = getElBy('DIV','lvl2');
		var t2;

		if ("object"==typeof(t0) && "object"==typeof(t1))
			{
				t2 = parseInt(t1.offsetTop) + parseInt(t0.offsetTop);
				t2 -= 5; //margin-top eines links;
				t1.style.top = t2+"px";

				var t0 = document.getElementById('pagetitlegrey');
				t0.style.height = (t2-t0.offsetTop)+'px';

			}

		var t0 = document.getElementById('pointing2');
		var t1 = getElBy('DIV','lvl3');
		var t2;

		if ("object"==typeof(t0) && "object"==typeof(t1))
			{
				t2 = parseInt(t0.offsetTop) + parseInt(t0.offsetParent.offsetTop);
				t2 -= 5; //margin-top eines links;
				t2 += "px";
				t1.style.top = t2;
			}

	}

function getElBy(strTagname,strClassName)
	{
		var t0 = document.getElementsByTagName(strTagname);
		for (var z0=0;z0<t0.length;z0++)
			{ if (t0[z0].className==strClassName) { return t0[z0]; } }
		return false;
	}

function checkform(nodeButton)
	{
		var f = nodeButton.form;
		var e = f.elements;

		for (var z0=0;z0<e.length;z0++)
			{
				if (e[z0].name)
					{
						if ( e[z0].value=="")
							{ alert("Bitte alle Felder ausfüllen"); return false; }
					}
			}

		f.submit();
	}

//window.onload=posme;
