function createHTTPObject()

{ 

	var objHTTP = null; 

	if (typeof XMLHttpRequest != 'undefined')

	{ 

  	try

  	{ 

			// Native XML support (Firefox, etc...) 

      objHTTP = new XMLHttpRequest(); 

		} 

    catch (e1) {} 

	} 

  else

  { 

  	try

  	{ 

    	// Internet Explorer support (new library) 

      objHTTP = new ActiveXObject("Msxml2.XMLHTTP"); 

		} 

    catch (e2)

    { 

    	try

    	{ 

      	// Internet Explorer support (old library) 

        objHTTP = new ActiveXObject("Microsoft.XMLHTTP"); 

      } 

      catch (e3) {} 

		} 

	} 

  return objHTTP; 

} 



var _objHTTP = createHTTPObject(); 



function voter(outil, note, langue)

{

	_objHTTP.open('GET', 'outils-noter_bdd.php?outil='+outil+'&note='+note, true); 

  _objHTTP.onreadystatechange = function()

  { 

  	if (_objHTTP.readyState == 4)

  	{ 

	  	if (_objHTTP.status == 200)

  		{ 
				
				if (langue == 'fr')
  				document.getElementById('noter').innerHTML = 'Merci pour votre vote !';
  			else if (langue == 'uk')
  				document.getElementById('noter').innerHTML = 'Thanks for your rating!';
  			else if (langue == 'es')
  				document.getElementById('noter').innerHTML = '&iexcl;Gracias por tus puntos!';
  			else if (langue == 'it')
  				document.getElementById('noter').innerHTML = 'Grazie per avere votato!';
  			else
  				document.getElementById('noter').innerHTML = 'Vielen Dank f&uuml;r Ihre Bewertung';

    	} 

		} 

	} 

	_objHTTP.send(null); 

}



function voter_on(outil, note)

{

	for (i = 1; i <= note; i++)

	{

		document.getElementById('outil_'+outil+'_'+i).setAttribute('src', 'images/etoile-on.png');

	}

	for (i = note + 1; i <= 5; i++)

	{

		document.getElementById('outil_'+outil+'_'+i).setAttribute('src', 'images/etoile.png');

	}

}

function temoignages_ecrire()
{
	window.open('temoignages-ecrire.php', 'temoignagnes_ecrire', 'toolbar=no, location=no, directories=no, status=no, scrollbars=yes, resizable=no, copyhistory=no, width=700, height=500');
}

function contact()
{
	window.open('contact.php', 'contact', 'toolbar=no, location=no, directories=no, status=no, scrollbars=yes, resizable=no, copyhistory=no, width=900, height=650');
}

function animation(animation)
{
	window.open('http://outils.acf-webmaster.net/outils-marketing/demo-flash.php?animation='+animation, 'animation_'+animation, 'toolbar=no, location=no, directories=no, status=no, scrollbars=no, resizable=no, copyhistory=no, width=631, height=436');
}

