function showPopup( nWidth, nHeight, sUrl, sTitle )
{
  sSettings = "toolbar=no,location=no,directories=no,status=no,menubar=yes,scrollbar=no,resizeable=no";
  sSettings += ",width=" + nWidth + ",height=" + nHeight;
  newWindow = window.open( sUrl, sTitle, sSettings );
}