function setHomeVideo(id)
{
	var video_id = id.split('_');
	//alert(video_id[1]);
	
	Ext.Ajax.request({
						  url : '../controller/video.php',
						  success: serverResponce,
						  params: {"action":"set_home_video","video_id":video_id[1]},
						  method: 'Post',
						  scope: this
					  });
}
 

function serverResponce(res)
{
	//alert(res.responseText);	
	
}

function ShowDescription(video_id)
{
	
	//alert("hello");
	//var video_id = id.split('_');
	var sDescription = "";
	//debugger;
	if(document.all)
		{
			sDescription = Ext.get("divTemp_"+video_id).dom.innerText;
		}
	else
		{
			sDescription = Ext.get("divTemp_"+video_id).dom.textContent;	
		}	
	

	var iLength = sDescription.length;
	if(iLength > 90)
		{
			sDescription = 	sDescription.substring(0,90) + "...";
		}
	Ext.get("divDescription_"+video_id).dom.innerHTML = sDescription;

}