nDontMove = 0;
nOldDiv = 0;
nCurrentDivId = null;

function ListMouseOver(nId, nIfBottom){
	if(nOldDiv != 0){
		Item = document.getElementById(nOldDiv);
		Item.style.backgroundColor = "#EEECE9";
		Item.style.color = "#494949";
		nOldDiv = 0;
	}
	if(nDontMove==0){
		Item = document.getElementById(nId)
		Item.style.backgroundColor = "#494949";
		Item.style.color = "#FFFFFF";
	}
	if(nIfBottom != 0){
		Bottom = document.getElementById(nIfBottom);
		BottomLeft = document.getElementById(nIfBottom+"Left");
		BottomRight = document.getElementById(nIfBottom+"Right");
		Bottom.background = "/Images/Boutons/BackGroundBottomOver.gif";
		BottomLeft.src = "/Images/Boutons/CornerBottomLeftOver.gif";
		BottomRight.src = "/Images/Boutons/CornerBottomRightOver.gif";
	}
}

function ListMouseOut(nId, nIfBottom){
	if(nDontMove==0){
		Item = document.getElementById(nId)
		Item.style.backgroundColor = "#EEECE9";
		Item.style.color = "#494949";
	}
	if(nIfBottom != 0){
		Bottom = document.getElementById(nIfBottom);
		BottomLeft = document.getElementById(nIfBottom+"Left");
		BottomRight = document.getElementById(nIfBottom+"Right");
		Bottom.background = "/Images/Boutons/BackGroundBottom.gif";					
		BottomLeft.src = "/Images/Boutons/CornerBottomLeft.gif";
		BottomRight.src = "/Images/Boutons/CornerBottomRight.gif";
	}
}

function HideList(){
	if(nCurrentDivId != null){
		document.getElementById(nCurrentDivId).style.visibility = "hidden";
		nCurrentDivId = null;
		nDontMove = 1;
	}
}

function ShowHideList(nDivId){
	DivItem = document.getElementById(nDivId);
	if(DivItem.style.visibility == "hidden"){
		DivItem.style.visibility = "visible";
		nDontMove = 0;
	}
	else{
		DivItem.style.visibility = "hidden";
		nDontMove = 1;
	}
}

function ListSelect(nItemId, nDivId, cField, nValue, nDivValue, cBouton){
	nDontMove = 1;
	DivItem = document.getElementById(nDivId);
	DivItem.style.visibility = "hidden";
	nOldDiv = nItemId;
	document.getElementById(cField).value = nValue;
	document.getElementById(cBouton).innerHTML = document.getElementById(nDivValue).innerHTML;
}

function GetLocation(){
	IsVerified = verifdate();
	if(IsVerified != false){
		document.forms[0].submit();
	}
}