// JavaScript Document

function VQSCIS(n)
{
	var o;
	for(var i=1;i <= 9;i++)
		o = document.getElementById('Q'+i+'A').style.display='none';
	o = document.getElementById('Q'+n+'A');
	if(o.style.display=='none'){o.style.display='block';}
	else{o.style.display='none';}
}

function getFile(F)
{
	var l=500;var h=300;var x=(((screen.width)/2)-(l/2));var y=(((screen.height)/2)-(h/2));
	window.open('?p=download&f='+F,'Téléchargement','width='+l+',height='+h+',left='+x+',top='+y+',location=no,menubar=yes,resizable=yes,scrollbars=no,status=no,toolbar=no');
}