

function popUp(URL) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=1,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width=500,height=640');");
}



// Email This Page code
// ----------------------------------------------------------------------------------------------------

// should be the URL to the cgi script
var path_to_script = "http://ubcvault.ca/emailtofriend.php";

// simple popup function which passes current page URL to 
// emailthis.php emailer script
function emailthis()
{
  path_to_script += '?url=' + escape(document.location);
  path_to_script += '&title=' + escape(document.title);
  new_win = window.open(path_to_script, "email_this","status=no,toolbar=no,location=no,directories=no,copyhistory=no,menu=no,menubar=no,status=no,resizable=yes,scrollbars=no,width=390,height=480");
  new_win.focus();
}

