//Datei clickformxwin.js
var newWindow = null;

function closeWin () {
if ( newWindow != null )
if ( !newWindow.closed ) newWindow.close();
}// end function closeWin


function mxwin ( imgsrc, strWidth, strHeight) {
    closeWin();
newWindow = window.open ( imgsrc , 'newWin',
'width=' + strWidth + ', height=' + strHeight +', screenx=300, screeny=350, status=no, toolbar=no, menubar=no, locationbar=no, directories=no, resizable=no, scrollbar=no, dependent=no, innerHeight=' + strHeight + ', innerWidth=' + strWidth);

newWindow.focus();
} // end function mxwin