//Affiche/Masque les blocs
function Toogle(MyZone) {
	var MyDisplay = (document.getElementById(MyZone).style.display == 'none') ? 'block' : 'none';
	document.getElementById(MyZone).style.display = MyDisplay;
	}

function DisplayForm(MyForm) {
	var MyFormHidden = ( MyForm == 'particulier') ? 'societe' : 'particulier';
	document.getElementById(MyForm).style.display = 'block';
	document.getElementById(MyFormHidden).style.display = 'none';	
	}

//Gestion Champ
function EmptyInput(MyInput) {
	MyInput.value = '';
	}

//Lien URL
	function GoUrl(MyUrl) {
	document.location.href=''+MyUrl+'';
	}

//Redirect depuis select
function SelectGoUrl(MySelect) {
	var MyUrl = MySelect.options[MySelect.selectedIndex].value;
	if( MyUrl == '' )
		alert('Merci de sélectionner une valeur dans la liste');
	else
		GoUrl(MyUrl);
	}

//Popup
function Popup(theURL,winName,features) {
	window.open(theURL,winName,features);
	}