function fenster(seite, weite, hoehe,name){ 
var mon, toppos, leftpos; 
var resizable=1;
if (seite.indexOf('stadtplan')>-1) resizable=0;
toppos = (screen.height - hoehe)/2; 
leftpos = (screen.width - weite)/2; 
features = "scrollbars=1,location=0,toolbar=0,menubar=0,resizable="+resizable+",status=0"; 
mon = window.open(seite,"name","width="+weite+",height="+hoehe+",top="+toppos+",left="+leftpos+","+features); 
//mon.document.title=name;
mon.focus();
}

function print_window(seite, weite, hoehe,name){ 
var mon, toppos, leftpos; 

toppos = (screen.height - hoehe)/2; 
leftpos = (screen.width - weite)/2; 
features = "scrollbars=1,location=0,toolbar=0,menubar=0,resizable=1,status=0"; 
mon = window.open(seite,"name","width="+weite+",height="+hoehe+",top="+toppos+",left="+leftpos+","+features); 
//mon.document.title=name;
mon.focus();
} 
var titel = new Array();
var text = new Array();
var bild = new Array();
var count=1;
function print(){
	text[1]=document.getElementById('content').innerHTML;
	print_window('./drucken.html',670,600);
}

function MM_displayStatusMsg(msgStr)
{ 
  status=msgStr;
  document.MM_returnValue = true;
}
