// JAVASCRIPT - BROWSERGR…§E-DETECTION //

var breite = screen.width;
var hoehe = screen.height;

	
if ( breite == 1024 || ( breite == 1280 && hoehe == 960 ) || ( breite == 1280 && hoehe == 900 ) )
{
	document.write('<link rel="stylesheet" type="text/css" href="style1024.css">');
}

else if ( breite == 1280 && hoehe == 1024 )
{
	document.write('<link rel="stylesheet" type="text/css" href="style1280.css">');
}

else if ( breite > 1280 )
{
	document.write('<link rel="stylesheet" type="text/css" href="style1280.css">'); 
}

else
{
	document.write('<link rel="stylesheet" type="text/css" href="style1280.css">');
}
