var webCastDates = new Array ("2008September17","2008September18", "2008September19", "2008September22", "2008September24", "2008September30", "2008October1", "2008October22", "2008October28", "2008November5", "2008November11", "2008November18", "2008November19", "2008October2");

var qs = new Querystring();
var qsHPWebcast = qs.get("webcast");
var qsHPFlash = qs.get("flash");
var currentTime = new Date();
var theHour = currentTime.getHours();

function thisFullDate(){
	var now = new Date();
	var monthNames = new Array ("January","February","March","April","May","June","July","August","September","October","November","December");	
	var thisMonth = monthNames[now.getMonth()];
	var thisDate = now.getDate();
	var thisYear = (now.getYear() < 1900) ? (now.getYear() + 1900) : now.getYear();
	var thisFullDate = thisYear + thisMonth + thisDate; //format of 2008August28

	return thisFullDate;
}	
function writeLink(){
	if (thisFullDate() == webCastDates[0] || (thisFullDate() == webCastDates[4] && theHour < 13) || (thisFullDate() == webCastDates[5] && theHour < 13) || (thisFullDate() == webCastDates[6] && theHour < 20) || qsHPWebcast == "RCCOnc") {
		document.write ("<a style='text-decoration:none;' href='../pages/webcast_service_redirect.aspx#RCCOnc'>");

	} else if ((thisFullDate() == webCastDates[2] && theHour < 10) || (thisFullDate() == webCastDates[13] && theHour < 13) || qsHPWebcast == "RCCNurse") {
	
		document.write ("<a style='text-decoration:none;' href='../pages/webcast_service_redirect.aspx#RCCNurse'>");
		
	} else if ((thisFullDate() == webCastDates[7] && theHour < 14) || (thisFullDate() == webCastDates[8] && theHour < 15) || (thisFullDate() == webCastDates[9] && theHour < 14) || (thisFullDate() == webCastDates[12] && theHour < 10) || qsHPWebcast == "GISTOnc") {
		document.write ("<a style='text-decoration:none;' href='../pages/webcast_service_redirect.aspx#GISTOnc'>");
		
	} else if ((thisFullDate() == webCastDates[10] && theHour < 11) || (thisFullDate() == webCastDates[11] && theHour < 19) || qsHPWebcast == "GISTNurse") {
		document.write ("<a style='text-decoration:none;' href='../pages/webcast_service_redirect.aspx#GISTNurse'>");
		
	} else {
		document.write("");
	}
}

function closeLink(){
	if (thisFullDate() == webCastDates[0] || (thisFullDate() == webCastDates[4] && theHour < 13) || (thisFullDate() == webCastDates[5] && theHour < 13) || (thisFullDate() == webCastDates[6] && theHour < 20) || qsHPWebcast == "RCCOnc" || (thisFullDate() == webCastDates[2] && theHour < 10) || (thisFullDate() == webCastDates[13] && theHour < 13) || qsHPWebcast == "RCCNurse" || (thisFullDate() == webCastDates[7] && theHour < 14) || (thisFullDate() == webCastDates[8] && theHour < 15) || (thisFullDate() == webCastDates[9] && theHour < 14) || (thisFullDate() == webCastDates[12] && theHour < 10) || qsHPWebcast == "GISTOnc" || (thisFullDate() == webCastDates[10] && theHour < 11) || (thisFullDate() == webCastDates[11] && theHour < 19) || qsHPWebcast == "GISTNurse"){
		document.write("</a>");
	} else {
		document.write("");
	}
}

function chgImg(imgName, imgSrc) {
	document.images[imgName].src = imgSrc;
}

function displayHomeFlash() {
		if (thisFullDate() == webCastDates[0] || (thisFullDate() == webCastDates[4] && theHour < 13) || (thisFullDate() == webCastDates[5] && theHour < 13) || (thisFullDate() == webCastDates[6] && theHour < 20) || qsHPWebcast == "RCCOnc") {
		chgImg("homePageFlashStill","../SiteCollectionImages/webcast_home_OncologistRCC.jpg");

	} else if ((thisFullDate() == webCastDates[2] && theHour < 10) || (thisFullDate() == webCastDates[13] && theHour < 13) || qsHPWebcast == "RCCNurse") {
		chgImg("homePageFlashStill","../SiteCollectionImages/webcast_home_NurseRCC.jpg");
		
	} else if ((thisFullDate() == webCastDates[7] && theHour < 14) || (thisFullDate() == webCastDates[8] && theHour < 15) || (thisFullDate() == webCastDates[9] && theHour < 14) || (thisFullDate() == webCastDates[12] && theHour < 10) || qsHPWebcast == "GISTOnc") {
		chgImg("homePageFlashStill","../SiteCollectionImages/webcast_home_OncologistGIST.jpg");
		
	} else if ((thisFullDate() == webCastDates[10] && theHour < 11) || (thisFullDate() == webCastDates[11] && theHour < 19) || qsHPWebcast == "GISTNurse") {	
		chgImg("homePageFlashStill","../SiteCollectionImages/webcast_home_NurseGIST.jpg");
		
	} else {
		if (qsHPFlash != "false") {
			var so = new SWFObject("../Media/homePageFlash.swf", "hpFlash", "491", "198", 8, "");
			//var so = new SWFObject("../Media/webcast_homePageFlash.swf", "hpFlash", "491", "198", 8, "");
			so.write("homeflashcontent");
		}
	}
	
}