// JavaScript Document

function Fensterkorrektur()
{
	var Fensterhoehe = document.documentElement.clientHeight;
	var AusgangsHoehe = document.getElementById("main").offsetHeight;
	var NeueHoehe = Fensterhoehe - 195;
	
	
	if (AusgangsHoehe <= NeueHoehe)
		{
		document.getElementById('main').style.height=NeueHoehe + 'px';
		};
}

function pruefen() {

// 1. wird die Seite in einem Frameset aufgerufen?

if (parent.frames.length == 0)
top.location.href = "http://www.id-time.de/index1.html";
else
{

// 2. prüfen ob es auch Ihr Frameset ist
// den Namen des 1. Frames abfragen
// hier wird der Name 'oben' abgefragt

 if(top.frames[0].name != "IDTIME")
 top.location.href = "http://www.id-time.de/index1.html"
 }
 return
}

// Aufruf der Funktion
//pruefen();











