// Script source: W. Shultz
// Copyright 2004
// Do not remove this notice
// global variables to form MY addresses
var at1 = "@";
var dot = ".";
var id2 = "sales";
var id3 = "membership";
var typ = "org";
var url = "dlwrrhs";

// Used for forms
function FixBusi(obj1) {  // PayPal FORM business value
  if (obj1.business) {      // see what is in this form
    obj1.business.value = id2 + at1 + url + dot + typ;
	}
  if (obj1.receiver_email) {
  	obj1.receiver_email = id2 + at1 + url + dot + typ;
	}
  return true;             // make it work...
}

function FixBusiMem(obj1) {  // PayPal FORM business value
  if (obj1.business) {      // see what is in this form
    obj1.business.value = id3 + at1 + url + dot + typ;
	}
  if (obj1.receiver_email) {
  	obj1.receiver_email = id3 + at1 + url + dot + typ;
	}
  return true;             // make it work...
}

