function lookatmebaby(obj,id)
{
	if (obj.options[obj.options.selectedIndex].value == 1 || obj.options.selectedIndex == "")
	{
		document.getElementById(id).style.display = "none";
	}
	else
	{
		document.getElementById(id).style.display = "block";
	}
}



function OMconfirm(msg,url) {
	if ( confirm( msg ) ) {
		location = url;
	}
}


function activation(chkBx1){

	bx1 =  document.getElementById(chkBx1);


	 if (bx1.disabled == false){
	 	bx1.disabled = true;
	 }
	 else
	 {
	 	bx1.disabled = false;
	 }
	 
}

function setActif1(chkBox,chkBox2){

	bx1 = d.getElementById(chkBox);
	bx2 = d.getElementById(chkBox2);


	if (bx1.checked){
		bx2.disabled = false;

	}
	else
	{
		bx2.disabled = true;
	}

}
