 function quote(ref) {
   link = 'cgi-bin/quote.pl?'+ref

   Hgt = 160
   Wth = 320
   if(screen) {
     Hgt = screen.height/4
     Wth = Math.max(screen.width/2, 400)
     LeftPos = (screen.width - Wth)/2
   }
   VerseWindow = window.open(link,'popwin', 'resizable=yes,scrollbars=yes,width='+Wth+',height='+Hgt+',left='+LeftPos+',top=0')
   VerseWindow.focus()
 }

