//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 +
',status=no,toolbar=no,menubar=no,location=no' +
',resizable=no,scrollbars=no,dependent=yes' +
',innerHeight=' + strHeight +
',innerWidth=' + strWidth);
newWindow.focus();

}