function OuvrirPopup(page,width,height,scroll) {
	window.open(page,'','resizable=no, location=no, width='+width+', height='+height+', status=no, scrollbars='+scroll+', menubar=no');
}

function Rechercher() {
	if(document.getElementById('sword').value == "Recherchez...")
	{
		alert("Merci de renseigner le champ \"Recherchez...\"");
		document.getElementById('sword').focus();
		exit;
	}
	if(document.getElementById('recherchetype').value == "articles")
		window.location = "/index.php?id=93&tx_indexedsearch[sword]="+document.getElementById('sword').value+"&tx_indexedsearch[type]=20&no_cache=1";
	else
		window.location = "/no_cache/sudouest-eco/agenda/agenda_motcle/"+document.getElementById('sword').value+"/index.html";
}

function validequiz() {
	var temp;
	var indquestion = 0;
	var indreponse = 0;
	for (j=0; j<document.forms.length; j++) {
		var theForm = document.forms[j]
		for(i=0; i<theForm.elements.length; i++){
			if(theForm.elements[i].name.substring(0,10) == "choixquiz[") {
			
				if(theForm.elements[i].name!=temp)
						indquestion = indquestion+1;
				
				if(theForm.elements[i].checked == true)
					indreponse = indreponse + 1;
					
				temp = theForm.elements[i].name;
				
			} 
		}
		if (indreponse == indquestion) {
			return true;
		}
	}
	alert("Pour jouer ou vous inscrire, merci de répondre aux questions du quiz");
	return false;
}