// window ohne scrollbar ::::::::::::::::::::::::::::::::::::::::::::::::::::::::

// Fensterposition horizontal 10, vertical 10
// uebergabe url , breite , hoehe
// aufruf: <a href="javascript: popwin4('dateiname.htm','700','450')">link</a>

function popwin4(url,w,h)
{
x=200;
y=200;
popUp4=window.open(url,'win4','width='+ w +',height='+ h +',left=' + x +',top='+ y +',directories=0,status=0,scrollbars=0,resizable=1,menubar=1,locationbar=1')
}
