<!--

// This file enables some general functions of the website.

// Print page function
function printpage() {
  if (self.print) {
    self.print();
  } else {
    alert("Sorry, your browser does not support an automatic print function. Please use your menu bar to print this page.");
  }
}

// Email function  
function email() {
  window.open ("/code/php/emailafriend.php?link=" + self.location.href + "&title=" + document.title, 'email','resizable=0,scrollbars=0,width=400,height=400');
  windowHandle.focus('email');
}

function footerlogo() {
document.write("<a href=\"/podcasts/\" style=\"margin-right:20px;\">"+"<img src=\"/images/template/ipodiconsm.jpg\" alt=\"Audio &amp; Videocasts\" title=\"Podcasts\"/>"+"</a>");
document.write("<a href=\"http://del.icio.us/post?title="+document.title+"&url="+self.location.href+"\" style=\"margin-right:20px;\">"+"<img src=\"/images/template/delicious.gif\" alt=\"del.icio.us\" title=\"del.icio.us\"/>"+"</a>");
document.write("<a href=\"http://digg.com/submit?phase=2&url="+self.location.href+"\" style=\"margin-right:20px;\">"+"<img src=\"/images/template/digg.gif\" alt=\"digg.com\" title=\"digg.com\"/>"+"</a>");
document.write("<a href=\"http://furl.net/storeIt.jsp?t="+document.title+"&u="+self.location.href+"\">"+"<img src=\"/images/template/furl.gif\" border=\"0\" alt=\"furl.com\" title=\"furl.com\" />"+"</a>");
}
-->