﻿function popprintpage() {
  newWindow = window.open ('/email/page_displayContent.asp?r=' + getScriptName(), '_printpage','width=700,height=500,toolbar=yes,status=no,scrollbars=yes,resizable=no,menubar=no,directories=yes,location=no,left=' + (screen.width-700)/2 + ',top=' + (screen.height-600)/2);
}

function popsendpage() {
  newWindow = window.open ('/email/page_sendContent.asp?r=' + getScriptName(), '_sendpage','width=700,height=500,toolbar=yes,status=no,scrollbars=yes,resizable=no,menubar=no,directories=yes,location=no,left=' + (screen.width-700)/2 + ',top=' + (screen.height-600)/2);
}

function getScriptName() {
  var sReturn = '';
  var sURL = document.location;
  sURL = sURL.toString();
  
  var iFoundAnchor = sURL.indexOf('#');
  if (iFoundAnchor > 0) sURL = sURL.substring(0, iFoundAnchor);
  sURL=(sURL.substring(0,7) == 'http://')?sURL.substring(7,sURL.length):sURL.substring(8,sURL.length)
  sReturn=sURL.substring(sURL.indexOf('/'), sURL.length);
  return sReturn;
}