//---------------------------------------------------------------------------
//
// File:    GeoEmail.js
// Purpose: Implement Email Address without actually including it in HTML.
// Author:  George A. McConnel
// Date:    02/09/2001
//
// Copyright (c) 2001, George A. McConnel
//
// Description:
//
// -------------------------------------------------------------------------
//
// M O D I F I C A T I O N   H I S T O R Y
// ---------------------------------------
//
//    Date    By  Description
// ---------- --- ----------------------------------------------------------
// 09/02/2001 GAM Started this project
// 07/30/2001 GAM Changed address to georgemc@comcast.net
//---------------------------------------------------------------------------

<!--

function GeoEmail_Display()
{
  document.writeln("<a href=\"mailto:georgemc@comcast.net\">");
  document.writeln(this.m_szText);
  document.writeln("</a>");
}

//
// GeoEmail() - Constructor
//
function GeoEmail(a)
{
	// properties
    this.m_szText = a;
	this.Display = GeoEmail_Display;
}

//-->
