<!--

// centered popup window with url, width and height set in HTML or AS
// Note that all windows functions are set to zero. To add those functions, change their boolean to "1"
function popup(url, width, height) {
winURL = url;
winName = "_blank";
winWidth = width;
winHeight = height;
winOffX = (screen.width - winWidth)/2;
winOffY = (screen.height - winHeight)/2;
winSpecs = "width=" + winWidth + ",height=" + winHeight + ",toolbar=0,menubar=0,scrollbars=1,resizable=1,location=0,directories=0,status=0,left=" + winOffX + ",top=" + winOffY
loading = window.open(winURL,winName,winSpecs);
}

// used for HTML email links to avoid spammers stealing email addresses from sites. 
function changeText(conversionString,inChar,outChar)
{
  var convertedString = conversionString.split(inChar);
  convertedString = convertedString.join(outChar);
  return convertedString;
}


