<!--

function new_position()
{

	left_position = -10;
	top_position  = -8;

	if (document.all)
	 {
		breite = document.body.clientWidth;
		hoehe  = document.body.clientHeight;
	 }
	else if (document.layers)
	 {
		breite = window.innerWidth;
		hoehe  = window.innerHeight;
	 }
	else if ((document.getElementById) || (document.layers))
	 {
		breite = window.innerWidth;
		hoehe  = window.innerHeight;
	 }


	left_position = eval(-280+(breite/2.2));
	top_position = eval(-180+(hoehe/2.2));

	if (breite<=780)
		left_position  = -10;

	if (left_position<-10)
		left_position  = -10;

	
	url = self.location.href;

	if (document.getElementById)
	if (document.getElementById("content"))
	{

		document.getElementById("content").style.left = left_position + "px";
		document.getElementById("content").style.top  = top_position + "px";
	}

}

new_position();

window.onresize = new_position;




//--->

