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('<HTML><HEAD><TITLE>Java User Group Stuttgart e.V.<\/TITLE><link rel=stylesheet type="text\/css" href="../formate1.css"><\/HEAD>');
    NewWindowPageSize.document.write('<BODY><p align="center"><A HREF="JavaScript:self.close()"><IMG SRC="'+page+'" WIDTH="'+width+'" HEIGHT="'+height+'" HSPACE="0" VSPACE="5" BORDER="0"><\/A>');
    NewWindowPageSize.document.write('<br><font size="2">'+comment+'<br>(Click on the pic to close window / zum Schlie&szlig;en ins Bild klicken)</font><\/p><\/BODY><\/HTML>');
    NewWindowPageSize.document.close();
    window.NewWindowPageSize.focus();
}
