function Ausrichten()
{	
	b = document.getElementsByTagName('body')[0];
	d = document.getElementById('container');
	
	if(b.offsetWidth < 900)
	{
		d.style.left = '0px';
		d.style.top = '0px';
		d.style.marginLeft = '0px';
		d.style.marginTop = '0px';
	}
	else
	{
		d.style.marginLeft = '';
		d.style.marginTop = '';	
		d.style.left = '';
		d.style.top = '';	
		
		/*
		d.style.marginLeft = '-450px';
		d.style.marginTop = '-285px';	
		d.style.left = '50%';
		d.style.top = '50%';	*/
	}
}

window.onload =  Ausrichten; 
window.onresize = Ausrichten;