//
// Browser Detection
//
isMac = (navigator.appVersion.indexOf("Mac")!=-1) ? true : false;
NS4 = (document.layers) ? true : false;
IEmac = ((document.all)&&(isMac)) ? true : false;
IE4plus = (document.all) ? true : false;
IE4 = ((document.all)&&(navigator.appVersion.indexOf("MSIE 4.")!=-1)) ? true : false;
IE5 = ((document.all)&&(navigator.appVersion.indexOf("MSIE 5.")!=-1)) ? true : false;
IE6 = ((document.all)&&(navigator.appVersion.indexOf("MSIE 6.")!=-1)) ? true : false;
ver4 = (NS4 || IE4plus) ? true : false;
NS6 = (!document.layers) && (document.getElementById) && (navigator.userAgent.indexOf('Netscape')!=-1)?true:false;

IE5plus = IE5 || IE6;
IEMajor = 0;

if (IE4plus)
{
	var start = navigator.appVersion.indexOf("MSIE");
	var end = navigator.appVersion.indexOf(".",start);
	IEMajor = parseInt(navigator.appVersion.substring(start+5,end));
	IE5plus = (IEMajor>=5) ? true : false;
}


// Zuweisungen:

// Browser Version 4
if (navigator.appVersion.substring(0,1) == "4" && !(IE5plus))
window.location.replace("Old/index_old.html")

// Aufloesung 800x600 (832x624) und MS IE Version >= 5
else if ((screen.width<=832||screen.height<=624) && IE5plus) {
  window.close();
  window.open("Relaunch/Seiten/mainaussen.html","Ferienwohnung_Schroeter","width=790,height=550,screenX=0,screenY=0");
}

// Aufloesung 800x600 (832x624) und Netscape Navigator Version >= 6
else if ((screen.width<=832||screen.height<=624) && NS6) {
  window.close();
  window.open("Relaunch/Seiten/mainaussen.html","Ferienwohnung_Schroeter","width=790,height=550,screenX=0,screenY=0");
}

// Aufloesung 1024x768 und MS IE Version >= 5
else if ((screen.width>=1024||screen.height>=768) && IE5plus)
window.location.replace("Relaunch/Seiten/mainaussen.html")

// Aufloesung 1024x768 und Netscape Version >= 6
else if ((screen.width>=1024||screen.height>=768) && NS6)
window.location.replace("Relaunch/Seiten/mainaussen.html")

else window.location.replace("Relaunch/Seiten/mainaussen.html")
