<!--
function email_a_friend_window(url,type,from_email)
{
//  url = 'http://' + location.hostname + url;

  target = '/cgi-bin/email_a_friend.cgi'
	+ '?title='      + escape(document.title)
	+ '&type='       + escape(type)
	+ '&url='        + escape(url)
	+ '&from_email=' + escape(from_email);
  var winatts = "location=no,menubar=no,toolbar=no,scrollBars=yes,"
              + "resizable=yes,width=560,height=410";
  new_window=window.open(target, 'email_a_friend', winatts);
  new_window.moveTo(0,0);
  new_window.focus();

}
//-->

