<!--
function rollover( elementId ) {
  document.getElementById( elementId ).style.backgroundColor = '#666666';
}

function rollout( elementId ) {
  document.getElementById( elementId ).style.backgroundColor = '#ED1C24';
}

function printPopup( url ) {
  window.open( url, 'Print_View', 'toolbar=0,scrollbars=1,location=0,status=0,menubar=0,resizable=0,width=650,height=500');
}

function popup( url ) {
  window.open( url, 'CPP', 'toolbar=1,scrollbars=1,location=1,status=1,menubar=1,resizable=1,width=800,height=500');
}

