/**
 * Author: meta-logica
 * Last modified on April 30 2008
 */

/* Function to hide the mailto in an href */
function displayMail(doc, prefix, display) {
  if (display == null || display == "") {
    doc.write("<a href=\"mailto:" + prefix + "@" + "albertasouthstorage.com\">" + prefix + "@albertasouthstorage.com</a>");
  }
  else {
    doc.write("<a href=\"mailto:" + prefix + "@" + "albertasouthstorage.com\">" + display + "</a>");
  }
}
