<!--
var isInternetExplorer = navigator.appName.indexOf("Microsoft") != -1;
// Gérer tous les messages FSCommand d'une animation Flash.
function cAnim(args) {
	var loaderObj = isInternetExplorer ? document.all.loader : document.loader;
	
	loaderObj.SetVariable("urlSend",args);
	//
	// Insérez votre code ici.
	//
}
// Hook pour Internet Explorer
if (navigator.appName && navigator.appName.indexOf("Microsoft") != -1 && navigator.userAgent.indexOf("Windows") != -1 && navigator.userAgent.indexOf("Windows 3.1") == -1) {
	document.write('<script language=\"VBScript\"\>\n');
	document.write('On Error Resume Next\n');
	document.write('Sub changeAnim(ByVal args)\n');
	document.write('	Call changeAnim(args)\n');
	document.write('End Sub\n');
	document.write('</script\>\n');
}


function imgSwap(Img,pos){
	if(pos){
		pt=Img.src.lastIndexOf('.')
		t2=pt-1
		if(Img.src.substring(t2,pt)=="2")return;
		Img.src=Img.src.substring(0,pt)+'2.gif'
		
	}else{
		pt=Img.src.lastIndexOf('.')
		t2=pt-1
		if(Img.src.substring(t2,pt)!="2")return;
		Img.src=Img.src.substring(0,t2)+'.gif'
		
	}
	
	
}
//-->