// contact.js         A library of useful JavaScript functions

// Copyright (c) Circle Software, Philip Karras 2000 - 20005

// Changes/additions for Advanced Land & Water... started: 04/19/2005
//                                            Last update: 04/19/2005

// Our soul waits for the Lord, he is our help and shield. Psalm 33:20

// 04/19/2005 - Added: Contact(); for Adavanced Land & Water



var name = "alwi";


// -------------------------------------------------------------------
// This function checks the form input for acceptability & adds the
// e-mail address needed.
//
// inputs: none
// output: none
// Action: builds the html line
// return: the html line needed
// -------------------------------------------------------------------
function Contact() {
   
   //alert("In Contact()"); // debugging line, are we here yet?
   var contact = "<a href='mailto:";
   var cm = ".com";
   var email = "info";
   
   // This builds just the e-mail address
   email += "@";
   email += name;
   email += cm;
   contact += email + "'>" + email + "</a>";
   
   //alert(contact); // debugging line, is the line correct?
      
   return contact;
}




