function jstest() 
{
alert("Alles ist in Ordnung. JavaScript ist bei Ihnen aktiviert.");
}

function bstest() 
{
var B1 = screen.width;
var H1 = screen.height;
alert("Ihre Bildschirmbreite ist: "+B1+"\nDie Bildschirmhoehe: "+H1);
}

function bfgtest() 
{
var x,y;
if (self.innerHeight) // all except Explorer
{
	x = self.innerWidth;
	y = self.innerHeight;
}
else if (document.documentElement && document.documentElement.clientHeight)
	// Explorer 6 Strict Mode
{
	x = document.documentElement.clientWidth;
	y = document.documentElement.clientHeight;
}
else if (document.body) // other Explorers
{
	x = document.body.clientWidth;
	y = document.body.clientHeight;
}
alert("Ihre Fensterbreite ist: "+x+"\nDie Fensterhoehe ist: "+y);
}
