<!--
// File Name:    txtpopup.js
// Description:  Open up a popup window displaying html text. 
// Date Author:  2006/01/09  CPA

var txtpopup, txtname, txtw, txth;
var txtwindow='';

function txtpopup( txtname, txtw, txth ) 
{
   var winw, winh;
    
   if(txtwindow.closed || !txtwindow.location)
   {

      txtwindow = window.open(txtname,"displayWindow",'resizable=yes,menubar=yes,scrollbars=yes,status=no,width=' + txtw + ',height=' + txth);
     
   } 
   else 
   { 
       winw = parseInt(txtw);
       if ( txtw < 120 ) winw = 120;
       winh = parseInt(txth) + 35;

   	   txtwindow.location.href=txtname;
       txtwindow.resizeTo(winw , winh);
    };

    txtwindow.focus();
}

function tidy() {
if (txtwindow.location && !txtwindow.closed) { 
   txtwindow.close(); } 
}
//-->