browserName = navigator.appName;
browserVer = parseInt(navigator.appVersion);
var ns = (browserName == "Netscape" && browserVer <5);
var ns6 = (browserName == "Netscape" && browserVer == 5);
var ie = (browserName == "Microsoft Internet Explorer");
var mac = (navigator.userAgent.indexOf("Mac") != -1);

function MenuVisible(lelayer, x_position, ie_x_pos, ie7_x_pos){
	document.getElementById(lelayer).style.display = "block";
	/*if ( navigator.appName.substr(0,2) == "Mi" ) {
	if ( navigator.appVersion.substr(17,6) =="MSIE 7" ) x_position=ie7_x_pos;
		else x_position = ie_x_pos;
	}
	document.getElementById(lelayer).style.marginLeft = x_position;*/
}

function ajaxBox( id_to_open)
{	
	sParams = "article_id:"+id_to_open;
	deliajax_getXML("div:contentArticle","GET","carte/AjaxDisplayArticle.xml",sParams, false);
}

function checkmail(mail)
{
	return (mail!='' && mail.length>=6 && mail.length<=255 && mail.indexOf('@')>=2 && mail.substring(mail.indexOf('@'),mail.length).indexOf('.')>1);
}



function MenuInvisible(lelayer){
document.getElementById(lelayer).style.display = "none";
}

function dynamic_scroll(){}