function emailFriend() {
    script_uri.replace(/&/g, "%26");
    var loc = "/Email_Friend/index.pl?url=" + script_uri;
    
    makeNewWindow(loc,"Email",600,640);
}


function printerFriendly() { makeNewWindow(script_uri,"print",700); }          

function makeNewWindow(url,name,winW,winH) {
  if (!(winH)) { winH = (screen.availHeight) ? screen.availHeight - 300 : 400; }
  if (!(winW)) { winW = (screen.availWidth) ? screen.availWidth - 200 : 600; }
  var options = "resizable,titlebar,scrollbars,location,menubar,personalbar,status,toolbar,height=" + winH + ",width=" + winW;
  if (name == "Email") {
    options = "resizable,titlebar,scrollbars,height=" + winH + ",width=" + winW; 
  }
  var newWindow = window.open("", name, options);
 if (newWindow.focus) { newWindow.focus(); }
 newWindow.location = url;
}

if (window.name && window.name == "print") {
   document.write('<link rel="stylesheet" id="print" type="text/css" href="/css/print.css">');
}
