
function load_video(id)
{ 
	
	var s = document.createElement('script'); 
        //s.src = 'http://players.cxpub.fr/affichage/request.php?code=3065e255bbb3cd91992a97f4b5c51abc&JSONP=loadInnerHtml'
		s.src = 'http://players.cxpub.fr/affichage/request.php?code='+id+'&JSONP=loadInnerHtml'
        s.type = 'text/javascript'; 
        document.body.appendChild(s); 
}

function loadInnerHtml(results)
{
	
			document.getElementById('player_rea').style.left="500px";
			document.getElementById('player_rea').style.top="150px";
			document.getElementById('player_rea').style.width=400;
			document.getElementById('player_rea').style.height=300;
			document.getElementById('player_rea').style.display="block";
			document.getElementById('player_rea').innerHTML = '<div style="text-align:right;color=white ">&copy;VIDEOBUZZ&nbsp;&nbsp;&nbsp;<a href="javascript:Hide();" title="Fermer la fenêtre"><img src="../images/close.gif" border=0></a></div>'+results.innerHtml;
}

function Hide(){
		
		with(
		document.getElementById('player_rea')){
			
			innerHTML ='';
			style.display='none';
		}
		document.getElementById('bodybis').style.backgroundColor = '';
		document.getElementById('bodybis').style.opacity = ''; //propriété CSS3, pour firefox et les autres
 		document.getElementById('bodybis').style.filter = "" // Pour IE
	}