var showRow = (navigator.appName.indexOf("Internet Explorer") != -1) ? "block" : "table-row";
function WebcastTab(){		
	document.getElementById('Podcast').innerHTML='<img src="files/podcast_inactivetab.jpg" width="146" height="23" id="Podcast_Disable" onclick="PodcastTab();">';
	document.getElementById('Webcast').innerHTML='<img src="files/webcast_activetab.jpg" width="146" height="31" id="Webcast_Enable" onclick="WebcastTab();">';
	Webcast_Content();
}

function PodcastTab(){
	document.getElementById('Podcast').innerHTML='<img src="files/podcast_activetab.jpg" width="146" height="31" id="Podcast_Enable" onclick="PodcastTab();">';
	document.getElementById('Webcast').innerHTML='<img src="files/webcast_inactivetab.jpg" width="146" height="23" id="Webcast_Disable" onclick="WebcastTab();">';
	Podcast_Content();
}

function Webcast_Content(){
	document.getElementById('Webcast_Content').style.display='block';
	document.getElementById('Podcast_Content').style.display='none';
}
function Podcast_Content(){
	document.getElementById('Webcast_Content').style.display='none';
	document.getElementById('Podcast_Content').style.display='block';
}