// contact.js         A library of useful JavaScript functions
// Copyright (c) Circle Software, Philip Karras 2000 - 20005



var name = "ericdeboerart";


// -------------------------------------------------------------------
// 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(email) {
   
   //alert("In Contact()"); // debugging line, are we here yet?
   var contact = "<a href='mailto:";
   var cm = ".com";
   
   // 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;
}




