// JavaScript Document

function OpenLayer(id)
 {
   if(document.getElementById(id).style.display == "block")
   {
    document.getElementById(id).style.display = "none" ;
   }
   else
   {
    document.getElementById(id).style.display = "block" ;
   }
   	window.status = ""
 }
function Supprimer(id)
{
var sel = confirm('Êtes-vous sûr de vouloir supprimer cet enregistrement?');
	if (sel) 
	{
	
	location = "?a=del&id=" + id;
	//alert("Supression effectuée avec succès")

	}
}

function openWin(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
