// JavaScript Document

function vergroessern(url,width,height) {
 MeinFenster = window.open(url, 'Vergroesserung', 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,copyhistory=no,width='+width+',height='+height+',screenX=10,screenY=10,top=10,left=10');
MeinFenster.focus();
}

// -->
