<!--
var denWin = null

function newWindow(value){
    if (denWin && !denWin.closed){
            denWin.location.replace(value);
    } else{
            denWin = window.open(value, 'denWin', "width=650, height=500, toolbar, menubar, scrollbars, resizable, location, status");
    } 
    denWin.focus();
}

function write() {
  var to_domain = "imt.net";
  var to_user = "samrferraro";
  var to_address = to_user + "@" + to_domain;
  location.href = "mailto:" + to_address;
}

function printPage() {
  if (window.print) {
           window.print();
  } else {
           print(document);
  }
}
//-->
