function channel(theDiv,thisState) {
	if (document.getElementById) {
		var theContent = document.getElementById("c" + theDiv);
		var currentVal = theContent.style.backgroundImage
		
		var theDiv = document.getElementById("d" + theDiv);
		
	
		if (thisState == "on") {
			theContent.style.backgroundImage = "URL(/img/favChannelsOvr.gif)";
			theDiv.style.display = "block";
			
		} else {
			theContent.style.backgroundImage = "URL(/img/favChannels.gif)";
			theDiv.style.display = "none";
		}
	} 
	return;
}

function nextLink(theDiv,thisState) {
	if (document.getElementById) {	
		var theContent = document.getElementById(theDiv);
		
	
		if (thisState == "on") {
			theContent.style.backgroundImage = "URL(/img/nextBckgrndOvr.gif)";
			
		} else {
			theContent.style.backgroundImage = "URL(/img/nextBckgrnd.gif)";
		}
	} 
	return;
}