// global variables to form MY addresses...
var at1 = "@";
var dot = ".";
var id1 = "sales";
var id2 = "";
var typ = "com";
var url = "comagination";
// var myWindow;
function openCenterWindow(picPage) {
  var width = 350;
  var height = 175;
  var left = parseInt((screen.availWidth/2) - (width/2));
  var top = parseInt((screen.availHeight/2) - (height/2));
  var windowFeatures = "width=" + width + ",height=" + height + ",status,resizable,left=" + left + ",top=" + top + ",screenX=" + left + ",screenY=" + top;
  window.open(picPage, "subWindow", windowFeatures);
}
function FixBusi (obj1) {  // PayPal FORM business value
  if (obj1.business)       // see what is in this form 
    obj1.business.value = id1 + id2 + at1 + url + dot + typ;
  return true;             // make it work...
}
function FixLink (obj1) {  // fix any link on page
  tmp = obj1.href;         // link contents
  ary = tmp.split ("ron853211");       // fake value
  tmp = ary.join  (id1 + id2);         // real value
  ary = tmp.split ("yahoo");           // fake URL
  tmp = ary.join  ("members." + url);  // real URL
  obj1.href = tmp;
}
function FixMail (obj1) {  // fix a hyperlink mail addr
  obj1.href = "mailto:" + id1 + id2 + at1 + url + dot + typ;
  return true;             // make it work...
}