///////////////////////////////////////////////////
//    JavaScript Document  COPYRIGHT Miw.fr      //
//    Tous droits réservés, toute copie ou       //
// reproduction partielle strictement interdite. //
//    All rights reserved, any copy or any       //
//   partial reproduction strictly prohibited.   //
///////////////////////////////////////////////////
function affichForm(url) {
window.open(url,"blank","channelmode=0,toolbar=0,location=0,directories=0,scrollbars=0,status=0,menubar=0,resizable=0,width=280,height=340, left=30,top=30");
}
function affichForm2(url) {
window.open(url,"blank","channelmode=0,toolbar=0,location=0,directories=0,scrollbars=0,status=0,menubar=0,resizable=0,width=420,height=463, left=30,top=30");
}	
function affichForm3(url) {
window.open(url,"blank","channelmode=0,toolbar=0,location=0,directories=0,scrollbars=0,status=0,menubar=0,resizable=0,width=380,height=150,left=500,top=500");
}

function MenuHide(obj) {
	var Menu = obj.parentNode.parentNode.parentNode.id ;
	var Button = obj.parentNode.parentNode.childNodes[4].firstChild;
	if (!(Button)) Button = obj.parentNode.parentNode.childNodes[9].firstChild;
	if (document.layers) {	
		Button.display="block";
		document.Menu.height="82px";		
	}
	else if(document.getElementById) { 	
		Button.style.display="block"; 	
		document.getElementById(Menu).style.height="82px";
	}
	else if(document.all) { 
		Button.style.display="block";
		document.all[Menu].style.height="82px";
	}
}
function MenuShow(obj) {
	var Menu = obj.parentNode.parentNode.parentNode.id ;
	if (document.layers) {
		obj.display="none";
		document.Menu.height="100%";
	}
	else if(document.getElementById) {
		obj.style.display="none";
		document.getElementById(Menu).style.height="100%";
	}
	else if(document.all) { 
		obj.style.display="none";
		document.all[Menu].style.height="100%";
	}
}
