/*  st-popup 20100207  */
function $(v)
{
	return(document.getElementById(v));
}

function $S(v)
{
	return($(v).style);
}

function agent(v)
{
	return(Math.max(navigator.userAgent.toLowerCase().indexOf(v),0));
}

function isset(v)
{
	return((typeof(v)=='undefined' || v.length==0)?false:true);
}

function XYwin(v)
{
	var z=agent('msie')?Array(document.body.clientHeight,document.body.clientWidth):Array(window.innerHeight,window.innerWidth);
	return(isset(v)?z[v]:z);
}

function spTOG()
{
	document.onclick=function(){ $S('spBG').display='none'; $S('spBOX').display='none';
	document.onclick=function(){}; };
}

function spBOX(v,b)
{
	setTimeout("spTOG()",5);
	$S('spBG').height=XYwin(0)+'px';
	$S('spBG').display='block';
	$('spBOX').innerHTML=v+'<div class="spX">(Schliessen, daneben klicken.)'+"<\/div>";
	$S('spBOX').left=Math.round((XYwin(1)-b)/3)+'px';
	$S('spBOX').width=b+'px';
	$S('spBOX').display='block';
}