function ajaxVideo(video)
{


var xhr=null;
		
		if (window.XMLHttpRequest) { 
			xhr = new XMLHttpRequest();
		}
		
		else if (window.ActiveXObject) 
		{
			xhr = new ActiveXObject("Microsoft.XMLHTTP");
		}
	
		xhr.onreadystatechange = function() { alert_ajaxVideo(xhr); };

		xhr.open("GET", "http://www.villathalgo.com/php/video.php?video="+video, true);
		xhr.send(null);


			function alert_ajaxVideo(xhr)
			{
		
				if (xhr.readyState==4) 
				{
				document.getElementById("popupVideo").innerHTML = xhr.responseText;	
				}
			}			
}














function videoPopupClose()
{
document.getElementById('popupDhtml').style['display'] = 'none';	
document.getElementById('popupVideo').style['display'] = 'none';	

}

function videoPopupAffich(video)
{

document.getElementById('popupDhtml').style['height'] = document.getElementById('main').offsetHeight+'px';
document.getElementById('popupDhtml').style['display'] = 'block';	
document.getElementById('popupVideo').style['display'] = 'block';

setTimeout("ajaxVideo('"+video+"');",500);




}

window.onclick = function(){
	
//videoPopupClose ();	
}
