/**
 * Fichier a remplir avec les actions spécifiques à la page.
 */
var indPleinEcran = 0;
var bulleAideReduire = "Reduce";
var bulleAidePleinEcran = "Full Screen";
var eccart = 0;

/**
 * Action déclenché sur le onChange du bouton qui contient la langue
 * Cette action positionne la lanque du framework ( aucun changements n'est visible sur cet ecran)
 * la modification ne sera active que pour la page suivante
 */

function reduire1()
  	{
  	if (indPleinEcran==1)
	  			{
	  			parent.window.moveTo (0,0) ;
	  			parent.window.resizeTo(screen.width,screen.height);
				form1.image.src="images/PleinEcran.gif";
				indPleinEcran = 0;
				parent.fullScreen=false;
				}
			else
				{
				parent.window.resizeTo(screen.width+10,screen.height);
	  			haut=screen.height-parent.parent.document.body.clientHeight;
	  			parent.window.moveTo (-5,-haut+27) ;
				parent.window.resizeTo(screen.width+10,screen.height+haut);
				form1.image.src="images/Reduire.gif";
				indPleinEcran = 1;
				parent.fullScreen=true;
				if ((parent.document.body.clientHeight > 768 && screen.height == 768)
	 			|| (parent.document.body.clientHeight > 600 && screen.height == 600) )
					{
				 	eccart = parent.parent.document.body.clientHeight - screen.height;
					parent.window.moveTo (-5,-haut+27+eccart);
					parent.window.resizeTo(screen.width+10,screen.height+haut-eccart);
					}
				}
	
	}



;