function showchanneltooltip(obj){
// disabled this for the moment.. it just isn't quite right somehow to display this text here
//	settooltip(obj.title);
}

function hidechanneltooltip(obj){
	//settooltip(document.getElementById('tooltips').title);
	//alert(document.getElementById('tooltips').title);
}

function settooltip( e ){
	document.getElementById('tooltips').innerHTML="<p>"+e.title+"</p>";
}

function hidetooltip( e ){
	document.getElementById('tooltips').innerHTML="<p> </p>";
}

function updatetitle( text ){
	document.getElementById('posttitle').innerHTML=text;
}

function updatechanneltitle( text ){
	document.getElementById('channeltitle').innerHTML=text;
	document.getElementById('testbutton').innerHTML=text;
}

function updatechanneldescription( text ){
	document.getElementById('testbutton').title=text;
}
