imgpath='../images/';
imgext='.gif';
imgonext='_on'+imgext;
if (document.images) {
	SaveImg = new Image()
	haut = new Image()

	haut.src=imgpath+'haut'+imgonext;
};
         function imageon(nom) {
    if (document.images) {
	if (typeof(nom) == 'string') {
		docimg=eval('document.'+nom);
		docimg.src=imgpath+nom+imgonext;
		self.status='';
};
};
};
	function imageof(nom) {
   if (document.images) {
        if (typeof(nom) == 'string') {
		docimg=eval('document.'+nom);
		docimg.src=imgpath+nom+imgext;
		self.status='';
  };
  };
};


