// Copyright Neil Ramsden 2005. All rights reserved.

// Simple showhelp() function
// Neil Ramsden
// showhelp.js
// 13 Oct 05 -> 28 Dec 05

//Provides a standard look for spelling site help screens.

//---------------------------------------------------------------------------

function showHelp(source, name)
{
  window.open(source, name, 'height=600, width=400, scrollbars=yes, resizable=yes, toolbar=yes');
}
