//will destroy frames which capture this page
	setTimeout ("changePage()", 3000);
function changePage() {
	if (self.parent.frames.length != 0)
		self.parent.location=document.location;
	}

//set the window status
//setInterval("x()",5);
  function x()
   {window.status="Carotec EDV-Dienstleistungen"}


function Fensterhoehe()
{
 if (window.innerHeight) return window.innerWidth;
 else if (document.body && document.body.offsetHeight) return document.body.offsetHeight;
 else return 0;
}

function Fensterbreite()
{
 if (window.innerWidth) return window.innerHeight;
 else if (document.body && document.body.offsetWidth) return document.body.offsetWidth;
 else return 0;
}



function neuAufbau()
{
 if (Hoehe != Fensterhoehe())
 window.location.reload();
}