// JavaScript Document
var nsstyle='display:""'
if (document.layers)
var scrolldoc=document.scroll1.document.scroll2
function up(){
if (!document.layers) return
if (scrolldoc.top<0)
scrolldoc.top+=10
temp2=setTimeout("up()",50)
}
function down(){
if (!document.layers) return
if (scrolldoc.top-150>=scrolldoc.document.height*-1)
scrolldoc.top-=10
temp=setTimeout("down()",50)
}

function clearup(){
if (window.temp2)
clearInterval(temp2)
}

function cleardown(){
if (window.temp)
clearInterval(temp)
}

function tester()
{
if (document.sampleform.firstinput.value.length < 1)
{
	alert("Choisissez une date avec le calendrier");
	return false;
}
return true;
}

function choixtest()
{
if ((document.anneeform.choix[0].checked==false) && (document.anneeform.choix[1].checked==false))
{
	alert("Veuillez choisir Teuf ou Teknival");
	return false;
}
return true;
}

function departement()
{
	if ((document.form2.dept.value.length < 1) || (document.form2.dept.value > 99))
	{
		alert("Saisissez un nb entre 1 et 99");
		return false;
	}
	return true;

	var chkZ = 1;
	for(i=0;i<document.form2.dept.value.length;++i)
	if(document.form2.dept.value.charAt(i) < "0" || document.form2.dept.value.charAt(i) > "9")
	 chkZ = -1;
	if(chkZ == -1)
	{
		alert("Ce n'est pas un nombre!");
		document.form2.dept.focus();
		return false;
	}
	return true;
}