function Video() 
	{
    var larg =  450  ; // ici la largeur du popup
    var haut = 370 ;  // ici la hauteur du popup
    var t = (screen.height-haut)/2 ;  // pour centre selon la hauteur de l'écran
    var l = (screen.width-larg)/2 ; // pour centrer selon la largeur de l'écran
	window.open("video.php","APERCU","toolbar=0,location=0,directories=0,menuBar=0,scrollbars=0,resizable=0,width="+(larg)+",height="+(haut)+",left="+(l)+",top="+(t));
	}
	
function FicheTechnique(lang) 
	{
    var larg =  900  ; // ici la largeur du popup
    var haut = 700 ;  // ici la hauteur du popup
    var t = (screen.height-haut)/2 ;  // pour centre selon la hauteur de l'écran
    var l = (screen.width-larg)/2 ; // pour centrer selon la largeur de l'écran
	window.open("KEOBLADE_"+(lang)+".pdf","APERCU","toolbar=0,location=0,directories=0,menuBar=0,scrollbars=0,resizable=0,width="+(larg)+",height="+(haut)+",left="+(l)+",top="+(t));
	}
	

