function show( id ) {
  var obj = document.getElementById( id );
  if ( obj.style.height == 'auto' ) {
    obj.style.height = obj.style.top;
  }
  else {
    obj.style.top = obj.style.height;
    obj.style.height = 'auto';
  }
}
function showpopup( id ) {
  var obj = document.getElementById( id );
  if ( obj.style.display == 'block' ) {
    obj.style.display = obj.style.top;
  }
  else {
    obj.style.top = obj.style.display;
    obj.style.display = 'block';
  }
}
function showConfirm( id ) { 
  var obj = document.getElementById( id );
  obj.style.display = 'block';
}

function hideConfirm( id ) {
  var obj = document.getElementById( id );
  obj.style.display = 'none';
}
function changeLabel() {
	document.getElementById('submitCheck').style.display = 'none';
	document.getElementById('submitCB').innerHTML = "Veuillez <br /> Patientez ...";
}
