// JavaScript Document
function contact()
{
	window.open("/location-voiture-contact.php", "contact", "top=10, left=200, toolbar=no, status=no, scrollbars=yes, resizable=no, width=475, height=710");
}

function gmt_horloge_header()
{ 
  var Maintenant = new Date(); 
  var fuseau = Maintenant.getTimezoneOffset();
  var jour = Maintenant.getDate(); 
  var mois = Maintenant.getMonth() + 1; 
  var anne = Maintenant.getFullYear(); 
  var heures = Maintenant.getHours(); 
  var minutes = Maintenant.getMinutes(); 
  var secondes = Maintenant.getSeconds();
  
  jour = ((jour < 10) ? "0" : "") + jour;
  mois = ((mois < 10) ? "0" : "") + mois;
  
  heures = ((heures < 10) ? " 0" : " ") + heures;
  minutes = ((minutes < 10) ? "0" : "") + minutes; 
  secondes = ((secondes < 10) ? "0" : "") + secondes; 
  document.getElementById('horloge_header').innerHTML = jour + "/" + mois + "/" + anne + " " + heures + ":" + minutes + ":" + secondes;
  setTimeout("gmt_horloge_header()",1000);
}

function valide_log()
{
	if ( (document.form_log_header.login.value != '')&&(document.form_log_header.password.value != '') )
	document.form_log_header.submit();
}