var MenuCrea = new Array(); 
var MenuCreaStyle = new Array(); 

function AffDivVideo(e,obj,w,h)
{
	MenuCrea[obj] = document.getElementById(obj); 
	MenuCreaStyle[obj] = document.getElementById(obj).style; 

	MenuCreaStyle[obj].left=(((document.body.clientWidth)-w)/2)-40;
	MenuCreaStyle[obj].top=((document.body.clientHeight)-h)/2;

	MenuCreaStyle[obj].visibility = "visible"; 

	return false; 
}

function OpenDivVideo(e,obj,w,h,theframe,thefile,closewin)
{
	window.frames[theframe].location.href = commun_url + 'opendiv/'+thefile+"?closewin="+closewin;
	AffDivVideo(e,obj,w,h);
	return false; 
}

function HideDivVideo(obj)
{
	if(obj == 'opendiv_video')
	{
		window.frames["divvideo_telematin"].location.href = commun_url + 'opendiv/divvideo_empty.php';
	}
	MenuCreaStyle[obj].visibility = "hidden";

} // Cache le menu.

