function checkall()
{
   temp = document.main.elements.length;
   if (document.main.elements[0].checked)
   {
    for (i=1; i < temp; i++)
    {
       document.main.elements[i].checked=1;
    }
   }
   else
   {
      for (i=1; i < temp; i++)
    {
       document.main.elements[i].checked=0;
    }
   }
}

function checkone()
{
   m=0;
   temp = document.main.elements.length;
   for (i=1; i < temp; i++)
   {
      if (document.main.elements[i].checked)
    {
       m++;
    }
   }
   if (document.main.elements[0].checked)
   {
      document.main.elements[0].checked=0;
   }
   else
   {
      if (m == (temp-1)) document.main.elements[0].checked=1;
   }
}


function verifselection()
{
   n=0;
   temp = document.main.elements.length;
   for (i=1; i< temp;i++)
   {
      if (document.main.elements[i].checked)
    {
       n=n+1;
    }
   }
   
  if (n != 0)
   {
      if (confirm("Etes-vous certain(e) de vouloir supprimer les photos sélectionnées ?"))
      {
         document.main.submit();
      }
   }
   else
   {
      alert("Vous devez sélectionner au moins une photo !");
   }
   
}


function sendpage()
{
temp = document.main.elements.length;
document.main.submit();   

}

function delalb(url)
{
if (confirm("Etes-vous certain(e) de vouloir supprimer cet album photo ? (les photos ne seront pas supprimées de votre compte)"))
      {
        window.open(url,"_parent") ;
      }

   
}


