// javascripts

function popup(url){
   window.open(url, "popup");
   return false; // don't actually follow the link
}

function popup_transcript(url){
   window.open(url, "popup", "scrollbars=1,status=1,width=600,height=800");
   return false; // don't actually follow the link
}
function popup_subscribe(url){
   window.open(url, "popup", "scrollbars=1,status=1,width=500,height=300");
   return false; // don't actually follow the link
}
