// JavaScript Document

// The scripts on this page are used in the podcast/index.asp and /episode.asp pages

//The following JS functions will collect variables from the paging link clicked and the page itself and submit the form:
function goToPage ( selectedNumber )
{
  document.pagingForm.pageNumber.value = selectedNumber ;
  document.pagingForm.submit() ;
}
function goToPage2 ( selectedNumber )
{
  document.pagingForm2.pageNumber.value = selectedNumber ;
  document.pagingForm2.submit() ;
}

//The following JS function will open the Share This window
function sendme(formName) 
{ 
    window.open("","myNewWin","width=525,height=685,scrollbars=yes,top=50,left=50,toolbar=0"); 
    var a = window.setTimeout("document.formName.submit();",500); 
} 
