//set up thr date vars
function y2k(number) { return (number < 1000) ? number + 1900 : number; }
function writeLinks(langAbr, langFull, showID) {
	var dt = new Date();
	if (dt.getDay() == 6){
	  var sat = true;
	  //var dt2 = new Date(Date.UTC(y2k(dt.getYear()),dt.getMonth(),dt.getDate(),dt.getHours(),dt.getMinutes(),dt.getSeconds()) - 24*60*60*1000);
	  //dt=dt2;
	}
	if (dt.getDay() == 0){
	  var sun = true;
	  //var dt2 = new Date(Date.UTC(y2k(dt.getYear()),dt.getMonth(),dt.getDate(),dt.getHours(),dt.getMinutes(),dt.getSeconds()) - 48*60*60*1000);
	  //dt=dt2;
	}
	var year = y2k(dt.getYear());
	var month = (dt.getMonth() + 1).toString();
	var date = dt.getDate().toString();
	
	//check to see if we need leadin zero
	if (month.length == 1)
		{month = '0' + month;}
	if (date.length == 1)
		{date = '0' + date;}
	
	//create the link
	var wholeDate = year+month+date;
	var strURL = '<a href="javascript:void(window.open(\'http://www.oneplace.com/common/player/OnePlace/CustomPlayer_ThruTheBible.asp?url=http://boss.streamos.com/real/swn/oneplace/rm/TB' + langAbr + '/TB' + langAbr + wholeDate + '.ram&MinTitle=Thru+The+Bible+-+' + langFull + '&Refresh=&AdsCategory=MINISTRY.TB' + langAbr + '&Show_ID=' + showID + '\',\'player\',\'toolbar=no,location=no,status=no,directories=no,menubar=no,scrolling=auto,scrollbars=auto,width=500,height=400,resizable=no\'));">RealAudio</a><br>';
	
	var strURL2 = '<a href="javascript:void(window.open(\'http://www.oneplace.com/common/player/OnePlace/CustomPlayer_ThruTheBible.asp?url=http://boss.streamos.com/wmedia/swn/oneplace/wm/TB' + langAbr + '/TB' + langAbr + wholeDate + '.wax&MinTitle=Thru+The+Bible+-+' + langFull + '&Refresh=&AdsCategory=MINISTRY.TB' + langAbr + '&Show_ID=' + showID + '\',\'player\',\'toolbar=no,location=no,status=no,directories=no,menubar=no,scrolling=auto,scrollbars=auto,width=500,height=400,resizable=no\'));">Windows Media</a><br>';
	
	var strURL3 = '<a href="javascript:void(window.open(\'http://www.oneplace.com/common/download-free.asp?fn=/TB' + langAbr + '/TB' + langAbr + wholeDate + '.mp3\',\'player\',\'toolbar=no,location=no,status=no,directories=no,menubar=no,scrolling=auto,scrollbars=auto,width=500,height=400,resizable=no\'));">MP3 Download</a>';
	
	// Code for registration to get the MP3
	// var strURL3 = '<li><a href="http://www.oneplace.com/ministries/thru_the_bible_with_jvernon_mcgee/" target="new">MP3</a></li>';
	
	if (!sat && !sun){
	  document.write('<p align="center">' + strURL);
	  document.write(strURL2);
	  document.write(strURL3 + '</p>');
	} else if (sat){
	  document.write('<a href="http://www.oneplace.com/ministries/Thru_The_Bible_Questions_And_Answers/Archives.asp">Real Audio</a></li><li><a href="http://www.oneplace.com/ministries/Thru_The_Bible_Questions_And_Answers/Archives.asp">Windows Media</a></li><li><a href="http://www.oneplace.com/ministries/Thru_The_Bible_Questions_And_Answers/Archives.asp">MP3</a><br>');
	} else if (sun){
	  document.write('<a href="http://www.oneplace.com/ministries/Thru_The_Bible_Sunday_Sermon/Archives.asp">Real Audio</a></li><li><a href="http://www.oneplace.com/ministries/Thru_The_Bible_Sunday_Sermon/Archives.asp">Windows Media</a></li><li><a href="http://www.oneplace.com/ministries/Thru_The_Bible_Sunday_Sermon/Archives.asp">MP3</a>');
	}
}
