// JavaScript Document
//Determine browser type and pass by id accordingly.
var nn4 = (document.layers) ? true : false;
var ie = (document.all) ? true : false;
var dom = (document.getElementById && !document.all) ? true : false;
function browser(id){
  if(nn4) {
  path = document.layers[id];
  }
  else if(ie) {
  path = document.all[id];
  }
  else {
  path = document.getElementById(id);
  }
return path ;
}
// Function to parse email addresses
function mailMe(sDom, sUser){
  return("mail"+"to:"+sUser+"%40")+sDom;//.replace(/%23/g,".")
}
