function goToMenu(form)
{
	theIndex = form.choix.options[form.choix.selectedIndex].value;
	window.location.href = theIndex;
}

function goToMenuFin(form)
{
	theIndex = form.choixFin.options[form.choixFin.selectedIndex].value;
	window.location.href = theIndex;
}


function NumberCheck(text)
{
	if (text.value=='')
	{
		alert('Le champ ' + text + ' est vide. Veuillez y saisir un nombre'); text.focus();
	}
	else
	{
		n=text.value.length;
		for (i=0;i<n; i++)
		{
			cchar=text.value.charAt(i);
			if (parseFloat(cchar)|| (cchar=='.')||(cchar=='0'))
			{
			}
			else
			{
				alert('Le caractère \''+cchar+'\' n\'est pas un chiffre\nMerci de ne saisir que des chiffres dans ce champ');
				text.value='';
				break;
			}
		}
	}
}

function refWin(url)
{
	var win= 'width=600,height=400,toolbar=1,location=1,directories=0,status=0,menu bar=1,resizable=1,scrollbars=1';
	open(url, 'UniversImmo', win);
}
