
function openWindow (theURL,winName,features)
{
  window.open(theURL,winName,features);
}

function openLetter (URL, width, height)
{
   msgWindow = window.open( URL, "helpscreen", 
     "width="+width+", height="+height+", menubar=no,resizable=yes,scrollbars=yes" );
}
