function NewWinPageSize(width,height,comment,page)   {
   var outerwidth = width + 36;
   var outerheight = height + 80;
   var options = "width="+outerwidth + ",height="+outerheight + ",screenX=0,screenY=0,left=0,top=0,toolbar=no,menubar=no,location=no,scrollbars=yes,resizable=yes,status=no,directories=no";
   NewWindowPageSize = window.open('page', "NewWindowPageSize", options);

    NewWindowPageSize.document.open();
    NewWindowPageSize.document.write('<!DOCTYPE html PUBLIC "-\/\/W3C\/\/DTD HTML 4.01 Transitional\/\/EN">\n');
    NewWindowPageSize.document.write('<HTML><HEAD><TITLE>LMP Lehrmittelproduktion<\/TITLE><style type="text\/css">p { text-align: center; font: normal 8pt Arial, Helvetica, sans-serif }<\/STYLE><\/HEAD>');
    NewWindowPageSize.document.write('<BODY><p align="center">&nbsp;<br>');
    NewWindowPageSize.document.write('<A HREF="JavaScript:self.close()"><IMG SRC="'+page+'" WIDTH="'+width+'" HEIGHT="'+height+'" HSPACE="0" VSPACE="0" BORDER="0" ALT=""><\/A>');
    NewWindowPageSize.document.write('<br \/>'+comment+'<br \/>Zum Schlie&szlig;en ins Bild klicken!<\/p><\/BODY><\/HTML>');
    NewWindowPageSize.document.close();
    window.NewWindowPageSize.focus();
}

