/* -------- extrait licence --------
	MaBulle.com (c) 2005-2008
	 Version: primipile 3.0
--------------------------------- */
/* -- antispam -- */
function resetASpam(asn,ask) {
	document.images[asn].src = '/clef/'+ Math.floor(Math.random()*1000000000);
	document.forms[ask].ASkey.value = '';
}
/* -- favoris -- */
var addFav = function (u) {
	var op = (navigator.userAgent.indexOf('Opera') != -1);
	var ff = (navigator.userAgent.indexOf('Firefox') != -1);
	ie7 = (navigator.userAgent.indexOf('MSIE 7') >= 0);
	/* -- elder vs -- */
	var win = (navigator.appVersion.indexOf('Windows') != -1);
	var ie4 = (navigator.appName == 'Microsoft Internet Explorer') && (parseFloat(navigator.appVersion) >= 4) && !op;
	var ie6 = ie4 && (navigator.appVersion.indexOf('MSIE 6') != -1) && win;
	var ie5 = (ie4 && (navigator.appVersion.indexOf('MSIE 5') != -1) && win) || ie6;
	var ns6 = (navigator.appName == 'Netscape') && (parseFloat(navigator.appVersion) >= 5);
	/* -- end elder vs -- */
	var t = document.title;
	if (ie5 || ie6 || ie7) {
		window.external.AddFavorite(u,t);
	} else if (ns6 && window.sidebar) {
		window.sidebar.addPanel(t,u,'');
	} else if (ff) {
		alert('Pour ajouter cette page, tapez CTRL+D');
	} else if (op) {
		alert('Pour ajouter cette page, tapez CTRL+MAJ+D');
	} else {
		alert('Pour ajouter cette page, tapez CTRL+D');
	}
	return true;
}
/* -- forms effect -- */
var inmotion = false;
var slide = {
	down:function(id) {
		document.getElementById(id).style.display = 'none';
		if (!inmotion) {
			inmotion = true;
			document.getElementById(id).style.display = 'block';
			//new Effect.BlindDown(id);
			var timer = setTimeout(function(){inmotion=false;slide.focus(id);},1000);
		}
	},
	focus:function(id) {
		if (id == 'mform') {
			document.forms['mform'].mel.focus();
		} else if (id == 'aform') {
			document.forms['aform'].pwd.focus();
		}
	},
	up:function(id) {
		if (!inmotion) {
			inmotion = true;
			document.getElementById(id).style.display = 'none';
			//new Effect.BlindUp(id);
			var timer = setTimeout(function(){inmotion=false;},1000);
		}
	}
}