<!--
var tempWin = null

function newWin(value){
  if (tempWin && !tempWin.closed){
          tempWin.location.replace(value);
  } else{
          tempWin = window.open(value, 'tempWin', "width=700, height=500, toolbar, menubar, scrollbars, resizable, location, status");
  } 
  tempWin.focus();
}

function send() {
  var to_domain = "frombergmt.com";
  var to_user = "legal";
  var to_address = to_user + "@" + to_domain;
  location.href = "mailto:" + to_address + "?Subject=About%20your%20site%20privacy%20policy";
}

function printPage() {
  if (window.print) {
           window.print();
  } else {
           print(document);
  }
}

//-->
