 <!-- ***** All rights reserved @ Practical Group ***** -->
 <!-- ***** Tous droits réservés @ Groupe Pratique ***** -->
<!-- SCRIPT DEMARRAGE DE LA PAGE // RESOLUTION ECRAN VISITEUR + MAXIMISATION FENETRE -->
window.moveTo(0,0);
if (document.getElementById || document.all) 
  {
  window.resizeTo(screen.availWidth, screen.availHeight);
  }
else if (document.layers) 
  {
  if (window.outerHeight<screen.availHeight || window.outerWidth<screen.availWidth)
    {
    window.outerHeight = screen.availHeight;
    window.outerWidth = screen.availWidth;
    }
  }

<!-- SCRIPT VALIDATION FILTRE -->
function verify()
{
if(document.filtre.cat.value!="") document.filtre.submit();
else alert('Vous devez cocher au moins une catégorie !\nVous devez recommencer à zéro !\nYou must notch at least one category !\nYou must restart from begining !');
}

<!-- SCRIPT VALIDATION FORMULAIRE DOWNLOAD -->
function telecharger()
{
	selected=0;
	for(n=0;n<document.download.elements.length;n++)
	{
		if(document.download.elements[n].type=='checkbox')
		{
			if(document.download.elements[n].checked) selected++;
		}
	}
	if(selected > 0) document.download.submit();
	else alert('Vous devez avoir sélectionné au moins un modèle powerpoint !\nYou must notch at least one powerpoint template !');
}