<!--
// JavaScript Document
function Fensterweite()
{
	if (window.innerWidth) return window.innerWidth;
	else if (document.body && document.body.offsetWidth) return document.body.offsetWidth;
	else return 0;
}

function Fensterhoehe()
{
	if (window.innerHeight) return window.innerHeight;
	else if (document.body && document.body.offsetHeight) return document.body.offsetHeight;
	else return 0;
}


function neuAufbau()
{
 if (Weite != Fensterweite() || Hoehe != Fensterhoehe())
 window.history.go(0);
}

/*Überwachung von Netscape initialisieren*/
if(!window.Weite && window.innerWidth)
{
	window.onresize = neuAufbau;
	Weite = Fensterweite();
	Hoehe = Fensterhoehe();
	if(Weite >= "1200") {
		document.write('<link href="css/xlvga.css" rel="stylesheet" type="text/css">');
	}
	if(Weite < "1200") {
		document.write('<link href="css/xvga.css" rel="stylesheet" type="text/css">');
	}
}
/*Überwachung von MS Internet Explorer initialisieren*/
if(!window.Weite && document.body && document.body.offsetWidth)
{
	window.onresize = neuAufbau;
	Weite = Fensterweite();
	Hoehe = Fensterhoehe();
	if(Weite >= "1200") {
		document.write('<link href="css/xlvga.css" rel="stylesheet" type="text/css">');
	}
	if(Weite < "1200") {
		document.write('<link href="css/xvga.css" rel="stylesheet" type="text/css">');
	}
}
//-->