var WindowObjectReference; // global variable

function dico(url){
	WindowObjectReference = window.open(url,
   "Dictionnaire",
   "width=420,height=230,resizable,scrollbars=yes,status=1");
}


function documentation(url){
	WinPlacard = window.open(url,   "Documentation",
   "width=750,height=400,resizable,scrollbars=yes,menubar=yes,location=yes,status=yes");
   
   
	if (WinPlacard)
	{
		// popup successfully created
		WinPlacard.focus();
	}
	else
    {
    	// popup was not created.
		alert("vous n'avez pas pu ouvrir la fenetre parce que vous bloquez l'ouverture des pop-ups");
	}
	return WinPlacard;
}

function calculateur(url){
	WinCalc = window.open(url,   "Calculateur",
   "width=780,height=560,resizable,scrollbars=yes,menubar=yes,location=yes,status=yes");
   
   
	if (WinCalc)
	{
		// popup successfully created
		WinCalc.focus();
	}
	else
    {
    	// popup was not created.
		alert("vous n'avez pas pu ouvrir la fenetre parce que vous bloquez l'ouverture des pop-ups");
	}
	return WinCalc;
}



function quizz(url){
WinQuizz = window.open(url,   "Documentation",
"width=780,height=560,resizable,,scrollbars=no,menubar=yes,location=yes,status=yes");
}


// this function is used for the bidule element
function placard(id){
	documentation("/spip.php?page=placard&id_article="+id)
}