function resizeStage(){
	var wh,nh;
	if (window.innerHeight)
		wh = window.innerHeight;
	else if (document.documentElement && document.documentElement.clientHeight) //ie6 strict
		wh = document.documentElement.clientHeight;
	else if (document.body) //ie
		wh = document.body.clientHeight;
	else return 0;
	nh = wh - 642;
	if(nh>75) nh = 75;
	if(nh<0) nh = 0;
	document.getElementById("streifen_top").style.height = nh+"px";
}

function showDeeplink(l){
	window.location.hash = l;
	document.cookie = 'deep='+l+';';
}

function errMsg(t,p){
	document.write('<div id="hgcontainer">');
	document.write('<div id="container">');
	document.write('<div id="header">');
	document.write('<h1><img src="'+p+'html/images/rimowa_logo.gif" alt="Rimowa - Every case tells a story." /></h1>');
	document.write('</div>');
	document.write('<div id="content">');
	document.write('<div id="home">');
	document.write(t);
	document.write('</div>');
	document.write('</div>');
	document.write('</div>');
	document.write('</div>');
}