// global variables to form MY addresses
var at1 = "@";
var dot = ".";
var id1 = "holliman";
var typ = "co";
var ty2 = "uk";
var url = "netmatters";

function FixBusi (obj1) {  // PayPal FORM business value
  if (obj1.business)       // see what is in this form 
    obj1.business.value = id1  + at1 + url + dot + typ + dot + ty2;
  return true;             // make it work...
}


function FixMail (obj1) {  // fix a hyperlink mail addr
  obj1.href = "mailto:" + id1 + at1 + url + dot + typ + dot + ty2;
  return true;             // make it work...
}