//---------------------------------------------------------
// check version of fulldate.js
//---------------------------------------------------------
var fdValid = true;
var FD_VERSION = getFdVersion();
if (FD_VERSION < 2 || FD_VERSION == null) fdValid = false;


//---------------------------------------------------------
// main function
//---------------------------------------------------------
if (fdValid == true)
{
  var sOutput = getFulldate();
  docwrite(sOutput, 'p', null, 'div', 'class', 'showdate');
}
else
{
  alert("fulldate.js version " + FD_VERSION + " is obsolete");
}  // end if

//   no special formatting with third parm == null
//   parms are [text to render], [element], [class if applicable], [parent element's name], [parent element's id attribute type], [parent element's id attribute value]
//   write <p> (no class) into <div class="showdate">
