// JavaScript Document

function popUp(url, desc, width, height)
{
    window.open(url, desc, "width="+width+",height="+height+",left=" + 	((screen.width - width)/2) + ",top=" + ((screen.height - height)/2)
		+ ",scrollbars=yes,resizable=yes")
}

function reloadAndClose(){
	opener.location.reload();
	window.close();
}

function montre (id)
{
  var e = document.getElementById (id);
  if (e.style.display == "none")
    e.style.display = "block";
  else
    e.style.display = "none";
}

function montreTable (id)
{
  var e = document.getElementById (id);
  if (e.style.display == "none")
    e.style.display = "table";
  else
    e.style.display = "none";
}

var checkflag = "false";
function check(field) {
	if (checkflag == "false") {
		for (i = 0; i < field.length; i++) {
		field[i].checked = true;}
		checkflag = "true";
		return "Tout décocher"; 
	}else {
		for (i = 0; i < field.length; i++) {
		field[i].checked = false; }
		checkflag = "false";
		return "Tout cocher"; 
	}
}
