function createRequestObject()
{
	try
	{
		xmlhttp = window.XMLHttpRequest ? new XMLHttpRequest() : new ActiveXObject("Microsoft.XMLHTTP");
	}
	catch(e)
	{
		alert('Sorry, but your browser doesn\'t support XMLHttpRequest.');
	}
	return xmlhttp;
}
var http = createRequestObject();

function displayFeaturedVideo(vid){  
	document.getElementById("div_home_page_video").innerHTML =  '<center><br /><br /><br /><br /><br /><br /><img src="'+imgurl+'/ajax-loader.gif" ></center>' ;
	http = createRequestObject(); 
	http.open('get', baseurl+"/home_video.php?vid="+vid);
	http.onreadystatechange = function (){
	if(http.readyState == 4){ //Finished loading the response
		var response = http.responseText;
  			document.getElementById("div_home_page_video").innerHTML =  response ;
		}
	  }
	http.send(null);
}//function

//--------------------------------------index_active_videos_--

function showActiveVideo(counter){
		//var total_video = document.getElementById("div_total_video").innerHTML ;
		for(var a =0 ; a < 5 ; a++){
				document.getElementById("index_videos_"+a).style.display = 'block' ;		
				document.getElementById("index_active_videos_"+a).style.display = 'none' ;		
			
		}


		document.getElementById("index_videos_"+counter).style.display = 'none' ;		
		document.getElementById("index_active_videos_"+counter).style.display = 'block' ;		
}
