function viewImage(argImage, argWidth, argHeight) {
	
  var intXPosition = (screen.availWidth - argWidth) / 2;
  var intYPosition = (screen.availHeight - argHeight) / 2;
  window.open('/common/ImageViewer.asp?URL=' + argImage, 'location', 'resize=no,scrollbars=0,toolbar=0,status=0	,width=' + argWidth + ',height=' + argHeight + ',top=' + intYPosition + ',left=' + intXPosition + ',screenY=' + intYPosition + ',screenX=' + intXPosition);
  }
  
function noSpamEmail(strRecipient, strDomain, strSubject) {
  var strAddress;
  strAddress = strRecipient + "@" + strDomain;
  document.location = "mailto:" + strAddress + "?Subject=" + strSubject;
}

function viewCalculator(argWidth, argHeight) {
	
  var intXPosition = (screen.availWidth - argWidth) / 2;
  var intYPosition = (screen.availHeight - argHeight) / 2;
  window.open('/featured/calculator_popup.htm', 'calculator', 'resize=no,scrollbars=0,toolbar=0,status=0	,width=' + argWidth + ',height=' + argHeight + ',top=' + intYPosition + ',left=' + intXPosition + ',screenY=' + intYPosition + ',screenX=' + intXPosition);
  }
  