<!--
/* Standard Functions for gpART.cc
   Package  W - launch info-Window
   Author:  Gerald Pechoc
   Version: 1.1
   Date:    2002-11-02
                                                               */

function DispBInfo(page, wint, scroll, pwidth, pheight, pstatus)  {
   // Version 
   var DispBInfoVersion = "3.0"
   // Date     2002-11-02
   //
   // USAGE:
   //
   // default values if no input
   var defscroll = "auto"
   var defwidth = "420"
   var defheight = "640"
   var defstatus = "no" 
   // check parameter   
   pscroll = defscroll 
   if ( scroll && typeof scroll != "undefined"){
        pscroll = scroll
   		}                
   parw = defwidth
   if ( pwidth && typeof pwidth != "undefined"){
        parw = pwidth
   		}                
   parh = defheight
   if ( pheight && typeof pheight != "undefined"){
        parh = pheight
   		}                
   pstat = defstatus
   if ( pstatus && typeof pstatus != "undefined"){
        pstat = pstatus
   		}                
   // create page and display
   pagenam = page + ".htm"  ;
   par1 = "status=" + pstat + ",toolbar=no,scrollbars=" + pscroll + ",resizable=yes,location=no,menu=no,width=" + parw + ",height=" + parh;
   stat = window.open(pagenam,wint,par1);
}

// -->