
/* Fonction specifiques à l'interface de consultation -----------------------------------------  */

	function trierListecountry_names(valeur)
	{
		if(valeur==document.triercountry_names.trierPar.value)
		{
			if(document.triercountry_names.ordre.value=="ASC")
			{
				document.triercountry_names.ordre.value = "DESC";
			}
			else document.triercountry_names.ordre.value = "ASC";
		}
		else
		{
			document.triercountry_names.trierPar.value = valeur;
			document.triercountry_names.ordre.value = "ASC";
		}
				
		document.triercountry_names.submit();
	}
	
	function mesChoix()
	{
		document.choix.monAction.value = "mesChoix";
		document.choix.submit();
	}

	function nouveauChoix($id)
	{
		document.choix.monAction.value = "nouveauChoix";
		document.choix.id.value = $id;
		document.choix.submit();
	}
	
	function supprimerChoix($id)
	{
		document.choix.monAction.value = "supprimerChoix";
		document.choix.id.value = $id;
		document.choix.submit();	
	}
	
	function cleanRecherche()
	{
		if(document.recherche.mot.value=='Tapez un mot clé' && document.recherche.elements['continent'].selectedIndex==0)
		{
			document.recherche.mot.value='';
		}
	}
	
	function rechercher()
	{
		cleanRecherche();
		if(document.recherche.mot.value=='' && document.recherche.elements['continent'].selectedIndex==0)
		{
			alert('aucun critère de recherche');
			return;
		}
		document.recherche.submit();
	}
	
/* Fonction communes à l'interface de consultation et d'administration ------------------------  */

	function emprunts()
	{
		document.admincountryteque.monAction.value = "gererEmprunts";
		document.admincountryteque.submit();
	}
	
	function reduire()
	{
		document.admincountryteque.monAction.value = "reduireImages";
		document.admincountryteque.submit();
	}
	
	function importer()
	{
		document.admincountryteque.monAction.value = "majAMCtoBDD";
		document.admincountryteque.submit();
	}
	
	function configurer()
	{
		document.admincountryteque.monAction.value = "configurer";
		document.admincountryteque.submit();
	}
	
	function gerercountry_names()
	{
		document.admincountryteque.monAction.value = "gerercountry_name";
		document.admincountryteque.submit();
	}
	
	function gerercontinents()
	{
		document.admincountryteque.monAction.value = "gerercontinents";
		document.admincountryteque.submit();
	}
	
	function getInfoDVDFR($id,$date)
	{
		document.admincountryteque.monAction.value = "getInfocountry_name";
		document.admincountryteque.id.value = $id;
		document.admincountryteque.date.value = $date;
		document.admincountryteque.submit();
	}
	
	function supprcountry_name()
	{
		if(confirm('confirmer la suppression ?'))
		{
			document.modifier.monAction.value = 'supprimercountry_name';
			document.modifier.submit();
		}
	}

	function popupcentree(page,largeur,hauteur,options)
	{
		var top=(screen.height-hauteur)/2;
		var left=(screen.width-largeur)/2;
		window.open(page,"","top="+top+",left="+left+",width="+largeur+",height="+hauteur+","+options);
	}
	
/* Fonction specifiques à l'interface d'administration ------------------------------------------  */
