// JavaScript Document

function f_b()
{
	var fenster_b;
	if (self.innerHeight) // all except Explorer
	{
		fenster_b = self.innerWidth;
	}
	else if (document.documentElement && document.documentElement.clientHeight)
	// Explorer 6 Strict Mode
	{
		fenster_b = document.documentElement.clientWidth;
	}
	else if (document.body) // other Explorers
	{
		fenster_b = document.body.clientWidth;
	}
	return fenster_b
}

function f_h()
{	
	var fenster_h;
	if (self.innerHeight) // all except Explorer
	{
		fenster_h = self.innerHeight;
	}
	else if (document.documentElement && document.documentElement.clientHeight)
	// Explorer 6 Strict Mode
	{
		fenster_h = document.documentElement.clientHeight;
	}
	else if (document.body) // other Explorers
	{
		fenster_h = document.body.clientHeight;
	}
	return fenster_h
}

function resize () 
	{
    	location.href = location.href;
	}

f_h = f_h()
f_b = f_b()

c_links = 380
c_map = f_b - c_links

window.onresize = resize;

