// Formulaire 1

function frm1()
{
		width = 550;
		height = 400;
		if(window.innerWidth)
{ var left = (window.innerWidth-width)/2; 
var top = (window.innerHeight-height)/2;
}
else
{
var left = (document.body.clientWidth-width)/2;
var top = (document.body.clientHeight-height)/2;
}
window.open('video-adonis.html#lien-frm-1','formationgenerale','menubar=no, status=no,location=no ,toolbar=no, directories=no, scrollbars=no,  top='+top+', left='+left+', width='+width+', height='+height+'');
}


