
var popat="@";
var popend1="schlamstone";
var popend2=".com";
var popend=popend1+popend2;
var poptail="?subject="+escape("Message from the Schlam Stone & Dolan web");

function norman(mailbox) {

var popto="mailto:";
if (mailbox=="general") popto=popto+"webcontact"+popat+popend+poptail;
else if (mailbox=="dolan") popto=popto+"RHD"+popat+popend+poptail;
else if (mailbox=="eilender") popto=popto+"JME"+popat+popend+poptail;
else if (mailbox=="genn") popto=popto+"PAG"+popat+popend+poptail;
else if (mailbox=="katz") popto=popto+"DKatz"+popat+popend+poptail;
else if (mailbox=="kissane") popto=popto+"TKissane"+popat+popend+poptail;
else if (mailbox=="kramer") popto=popto+"BDK"+popat+popend+poptail;
else if (mailbox=="lundin") popto=popto+"JLundin"+popat+popend+poptail;
else if (mailbox=="mazer") popto=popto+"JMazer"+popat+popend+poptail;
else if (mailbox=="mcbennett") popto=popto+"CMcBennett"+popat+popend+poptail;
else if (mailbox=="nash") popto=popto+"bnash"+popat+popend+poptail;
else if (mailbox=="omurchadha") popto=popto+"nomurchadha"+popat+popend+poptail;
else if (mailbox=="roofeh") popto=popto+"ARoofeh"+popat+popend+poptail;
else if (mailbox=="rosenfeld") popto=popto+"vrosenfeld"+popat+popend+poptail;
else if (mailbox=="sherwood") popto=popto+"JCS"+popat+popend+poptail;
else if (mailbox=="stone") popto=popto+"HMS"+popat+popend+poptail;
else if (mailbox=="baden") popto=popto+"wibaden"+popat+popend+poptail;
else if (mailbox=="anderson") popto=popto+"manderson"+popat+popend+poptail;
else if (mailbox=="harris") popto=popto+"aharris"+popat+popend+poptail;
else if (mailbox=="groothuis") popto=popto+"egroothuis"+popat+popend+poptail;
else if (mailbox=="russo") popto=popto+"rrusso"+popat+popend+poptail;
else if (mailbox=="zilz") popto=popto+"hzilz"+popat+popend+poptail;
else if (mailbox=="butt") popto=popto+"sbutt"+popat+popend+poptail;
else if (mailbox=="marcus") popto=popto+"mmarcus"+popat+popend+poptail;
else if (mailbox=="kelleher") popto=popto+"dkelleher"+popat+popend+poptail;
else if (mailbox=="battle") popto=popto+"mbattle"+popat+popend+poptail;
else if (mailbox=="begleiter") popto=popto+"rbegleiter"+popat+popend+poptail;
else if (mailbox=="wolstein") popto=popto+"ewolstein"+popat+popend+poptail;
else if (mailbox=="moreinfo") popto=popto+"information"+popat+popend+poptail; 
else return false;

window.location=popto;
return false;
}


var vcpath="../stuff/";
var vcext=".vcf";

function palm(vcname) {
if (vcname == "dolan") var ondeck = vcpath + "Richard H. Dolan" + vcext; 
else if (vcname == "eilender") var ondeck = vcpath + "Jeffrey M. Eilender" + vcext; 
else if (vcname == "genn") var ondeck = vcpath + "Patricia A. Genn" + vcext; 
else if (vcname == "katz") var ondeck = vcpath + "David J. Katz" + vcext; 
else if (vcname == "kissane") var ondeck = vcpath + "Thomas A. Kissane" + vcext; 
else if (vcname == "kramer") var ondeck = vcpath + "Bennette Deacy Kramer" + vcext; 
else if (vcname == "lundin") var ondeck = vcpath + "John M. Lundin" + vcext; 
else if (vcname == "mazer") var ondeck = vcpath + "Jonathan Mazer" + vcext; 
else if (vcname == "mcbennett") var ondeck = vcpath + "Cindy M. McBennett" + vcext; 
else if (vcname == "nash") var ondeck = vcpath + "Bradley J. Nash" + vcext; 
else if (vcname == "omurchadha") var ondeck = vcpath + "Niall D. O'Murchadha" + vcext; 
else if (vcname == "roofeh") var ondeck = vcpath + "Audrey A. Roofeh" + vcext; 
else if (vcname == "rosenfeld") var ondeck = vcpath + "Vitali S. Rosenfeld" + vcext; 
else if (vcname == "sherwood") var ondeck = vcpath + "James C. Sherwood" + vcext; 
else if (vcname == "stone") var ondeck = vcpath + "Harvey M. Stone" + vcext;  
else if (vcname == "baden") var ondeck = vcpath + "Wayne I. Baden" + vcext;  
else if (vcname == "anderson") var ondeck = vcpath + "Mary W. Anderson" + vcext;  
else if (vcname == "harris") var ondeck = vcpath + "Andrew S. Harris" + vcext;  
else if (vcname == "groothuis") var ondeck = vcpath + "Erik S. Groothuis" + vcext;  
else if (vcname == "russo") var ondeck = vcpath + "Ronald G. Russo" + vcext;  
else if (vcname == "zilz") var ondeck = vcpath + "Hillary S. Zilz" + vcext;
else if (vcname == "butt") var ondeck = vcpath + "Samuel L. Butt" + vcext;  
else if (vcname == "marcus") var ondeck = vcpath + "Michael C. Marcus" + vcext;  
else if (vcname == "kelleher") var ondeck = vcpath + "Denis Patrick Kelleher" + vcext;  
else if (vcname == "battle") var ondeck = vcpath + "Michael A. Battle" + vcext;  
else if (vcname == "begleiter") var ondeck = vcpath + "Robert L. Begleiter" + vcext;  
else if (vcname == "wolstein") var ondeck = vcpath + "Elizabeth Wolstein" + vcext;  
else return false;
window.location = ondeck;
return false;
}

function frinit() {
self.resizeBy(-75,-75);
return true;
}

function show(id) {
        document.getElementById(id).style.display = "block";
        return;
}

function hide(id) {
        document.getElementById(id).style.display = "none";
        return;
}

function displaystate(id) {
      var showorno = document.getElementById(id).style.display;
      return showorno;
}
function pictoggle() {

if (displaystate("portrait") == "block") {
  hide("portrait");
  show("qrvcard");
  }
else {
  hide("qrvcard");
  show("portrait");
  };
 
return;  
}

function flash(id) {
hide ("aphelp");
show(id);
return;
}

function sqa(id) {
hide(id);
show("aphelp");
return;
}

function toc() {
window.location.href="./";
return true;
}

function movedown() {
window.setTimeout("window.scrollBy(0,-175)","100");
return true;
}

// Startup stuff


document.writeln('<link rel="StyleSheet" href="http://www.schlamstone.net/magic/ssdprint.css" media="print" type="text/css">');

//analytics stuff

  var _gaq = _gaq || [];
  _gaq.push(['_setAccount', 'UA-1894174-1']);
  _gaq.push(['_trackPageview']);

  (function() {
    var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
    ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
    var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
  })();


// external link magic

function externalLinks() {
 if (!document.getElementsByTagName) return;
 var anchors = document.getElementsByTagName("a");
 for (var i=0; i<anchors.length; i++) {
   var anchor = anchors[i];
   if (anchor.getAttribute("href") &&
       anchor.getAttribute("rel") == "external")
     anchor.target = "_blank";
 }
}
window.onload = externalLinks;

