function getWindowHeight() {
	if (window.innerHeight) return window.innerHeight-15;
	else if (document.body && document.body.offsetHeight) return document.body.offsetHeight-35;
}

function rebuildWindow() {
	w=getWindowHeight();
	obj=document.getElementById('anderelogos');
	if (obj)
	{
	   if (w<555)
		 {
		 	obj.style.display='none';
		 }
		 else {
		 	obj.style.display='block';
		 }
	}
}


function rebuildStartWindow() {

	w=getWindowHeight();
	obj=document.getElementById('startnews');
	obj2=document.getElementById('startlogo');

	if (obj)
	{
	   if (w<500)
		 {
		 	obj.style.height='200px';
		 	obj2.style.marginTop='30px';
		 }
	   else  {
		 	obj.style.height='248px';
		 	obj2.style.marginTop='70px';
		 }

	}
}
