<!--

function popup(imgsrc,breite,hoehe)
{
	var x = (screen.width-breite)/2;
	var y = (screen.height-hoehe)/2;

	var content = '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html><head><title>Detailansicht</title><link rel="stylesheet" href="css/main.css" type="text/css" /></head><body class="popup" style="height:'+hoehe+'px; width:'+breite+'px; background-image:url('+imgsrc+'); background-repeat:no-repeat; background-position:10px 10px; margin:auto; padding:auto;"></body></html>';

	var breite = breite+20;
	var hoehe = hoehe+20;

	fenster = "width="+breite+",height="+hoehe+",scrollbars=no";

	fenstername = "fenster" + imgsrc;
	fenstername = open("","PopUp1",fenster);
	fenstername.moveTo(x,y);
	fenstername.focus();
	fenstername.document.open();
	fenstername.document.write(content);
	fenstername.document.close();
}

function lastschrift_disabled(what)
{
	if(what == true)
	{
		document.getElementById('formular').inhaber.value = "";
		document.getElementById('formular').kto.value = "";
		document.getElementById('formular').blz.value = "";
		document.getElementById('formular').institut.value = "";
	}

	document.getElementById('formular').inhaber.disabled = what;
	document.getElementById('formular').kto.disabled = what;
	document.getElementById('formular').blz.disabled = what;
	document.getElementById('formular').institut.disabled = what;
}



breite = screen.availWidth;



function move_popup(left)
{
	if(left <= ((breite/2)-200))
	{
		document.getElementById('popup').style.left = left+"px";
		setTimeout("move_popup("+(left+10)+")", 10);
	}
}

function popup_close()
{
	document.getElementById('popup').className = 'hide';
}

function show_popup()
{
	document.getElementById('popup').className = 'show';

	move_popup(-400);
}



//-->