var abstandX=20;
var abstandY=60;

function b_pic(pfad, breite, hoehe)
{
breiteNeu=parseInt(breite);
breiteNeu=breiteNeu+abstandX;
hoeheNeu=parseInt(hoehe);
hoeheNeu=hoeheNeu+abstandY;
mywin=window.open(pfad, 'fenster', 'width='+breiteNeu+',height='+hoeheNeu+'');
}






