function channelSelect(epiName){
	var episodePagePath;
	
	switch(epiName){
		case "IHW":
			episodePagePath = "http://digitalnewage.com/dnapartners/stp2/IHW/default.html";
			imageRef = '<img src="_buttons/EP1_IHW_175.jpg" width="175" height="75" vspace="0" border="0" />';
			break;
		case "TSAMD":
			episodePagePath = "http://digitalnewage.com/dnapartners/stp2/TSAMD/default.html";
			imageRef = '<img src="_buttons/EP2_TSAMD_175.jpg" width="175" height="75" vspace="0" border="0" />';
			break;
		case "TSAMD1969":
			episodePagePath = "http://digitalnewage.com/dnapartners/stp2/TSAMD1969/default.html";
			imageRef = '<img src="_buttons/EP2-1_TSAMD1969_175.jpg" width="175" height="75" vspace="0" border="0" />';
			break;
		case "WEaT":
			episodePagePath = "http://digitalnewage.com/dnapartners/stp2/WEaT/default.html";
			imageRef = '<img src="_buttons/EP3_WEaT_175.jpg" width="175" height="75" vspace="0" border="0" />';
			break;
		case "BaF-PT1":
			episodePagePath = "http://digitalnewage.com/dnapartners/stp2/BaF/part1.html";
			imageRef = '<img src="_buttons/EP4_BaF_Pt1_175.jpg" width="175" height="75" vspace="0" border="0" />';
			break;
		case "BaF-PT2":
			episodePagePath = "http://digitalnewage.com/dnapartners/stp2/BaF/part2.html";
			imageRef = '<img src="_buttons/EP5_BaF_Pt2_175.jpg" width="175" height="75" vspace="0" border="0" />';
			break;
		case "ES":
			episodePagePath = "http://digitalnewage.com/dnapartners/stp2/ES/default.html";
			imageRef = '<img src="_buttons/EP6_ES_175.jpg" width="175" height="75" vspace="0" border="0" />';
			break;
		case "Child":
			episodePagePath = "http://digitalnewage.com/dnapartners/stp2/Child/default.html";
			imageRef = '<img src="_buttons/EP7_Child_175.jpg" width="175" height="75" vspace="0" border="0" />';
			break;
		case "Kitumba":
			episodePagePath = "http://digitalnewage.com/dnapartners/stp2/Kitumba/default.html";
			imageRef = '<img src="_buttons/EP8_Kitumba_175.jpg" width="175" height="75" vspace="0" border="0" />';
			break;
		case "CS":
			episodePagePath = "http://digitalnewage.com/dnapartners/stp2/CS/default.html";
			imageRef = '<img src="_buttons/VIN1_CS_175.jpg" width="175" height="75" vspace="0" border="0" />';
			break;
	}

	document.getElementById('episodeFrame').src = episodePagePath;
	
	setPlayingEpisode(imageRef);
}

function setPlayingEpisode(imageRef){
	var nowShowingDiv = document.getElementById("nowShowing");

	nowShowingDiv.innerHTML = imageRef;
}

function loadChannelSelector(epiLoad) {
	var so = new SWFObject("DNAChannelSelect_STP2.swf", "STP2ChannelSelect", "200", "483", "8", "#000000");
	so.addParam("quality", "high");
	so.addParam("allowScriptAccess", "always");
	so.addParam("wmode", "transparent");
	so.addParam("menu", "false");
	so.addParam("bgcolor", "#000000");
	so.useExpressInstall('../../includes/swfobject/expressinstall.swf');
	so.write("episodeSelect");
	
	if (epiLoad != null && epiLoad != "" && epiLoad != " "){
		channelSelect(epiLoad);
	}
}