var fenster;

function ma(url){
  
  	var top, left, width=350, height=150;

  	top  = Math.round((screen.height - height)/20);
  	left = Math.round((screen.width - width)/20);


  	fenster = window.open('../wir/ma/'+url, 'Meldung', 'width='+width+',height='+height+',left='+left+',top='+top+',scrollbar=no');
  	fenster.focus();

}

function ma1(url){
  
  	var top, left, width=350, height=150;

  	top  = Math.round((screen.height - height)/20);
  	left = Math.round((screen.width - width)/20);


  	fenster = window.open('../ma/'+url, 'Meldung', 'width='+width+',height='+height+',left='+left+',top='+top+',scrollbar=no');
  	fenster.focus();

}

var route;

function rp(url){
  
  	var top, left, width=900, height=700;

  	top  = Math.round((screen.height - height)/20);
  	left = Math.round((screen.width - width)/20);


  	route = window.open('../'+url, 'Meldung1', 'width='+width+',height='+height+',left='+left+',top='+top+',scrollbar=no');
  	route.focus();

}