<!--
// sends coremetrics error tag in 404 html pages to production/sandbox

function setprod() {
 var h = window.location.hostname;
 if (h.indexOf('alpha') == -1 && h.indexOf('beta') == -1) {
   return true;
 }
 else
   return false;
}




-->