var xmlHttp;	
var ajax_url;

	function do_load_home_video(root_url){		
			//alert(mp);
			var url= root_url + "ajax/videos/home/home_video.php";
			load_home_video_handle(url);	
			return false;
	}
	
	function load_home_video_handle(url){		
		xmlHttp  =  GetXmlHttpObject()
		if (xmlHttp == null){
		 alert ("Browser does not support HTTP Request")
		 return
		 }		
		
		xmlHttp.onreadystatechange = load_home_video_ready		
		xmlHttp.open("GET",url,true)		
		xmlHttp.send(null)
	}
	
	function load_home_video_ready(){ 
		if (xmlHttp.readyState==4 || xmlHttp.readyState=="complete"){ 
			document.getElementById("spn_home_video").innerHTML = xmlHttp.responseText 				
		 } 
	}
