// (c) itiPub - http://www.itipub.com

function afficheImage(chemin)
	{
	i1 = new Image;
	i1.src = chemin;
	html = '<HTML><HEAD><TITLE>:: Les Ecuries du Clos Ry</TITLE></HEAD><BODY LEFTMARGIN=0 MARGINWIDTH=0 TOPMARGIN=0 MARGINHEIGHT=0 onLoad="msg.style.visibility = \'hidden\'"><div id="msg" style="position:absolute; left:220px; top:205px; width:400px; height: 100px"><table width="100%" border="0" cellspacing="0" cellpadding="0"><tr><td height="100" bgcolor="#FFFFFF"><div align="center"><font face="Verdana, Arial, Helvetica, sans-serif" size="2" color="#000000"><b>Patientez quelques secondes...</b></font></div></td></tr></table><font face="Verdana, Arial, Helvetica, sans-serif" size="2" color="#000000"></font></div><CENTER><IMG SRC="'+chemin+'" BORDER=0 NAME=imageTest onLoad="window.resizeTo(document.imageTest.width+14,document.imageTest.height+32)"></CENTER></BODY></HTML>';
	popupImage = window.open('','_blank','toolbar=0,location=0,directories=0,menuBar=0,scrollbars=0,resizable=0');
	popupImage.document.open();
	popupImage.document.write(html);
	popupImage.document.close()
	};
	
function afficheEquipe(URL)
{
	window.open(URL, "","resizable=yes, scrollbars=yes, toolbar=no, status=no, directories=no, menubar=no, screenX = 600, screenY = 400, width=700, height=550");
}

function afficheProto(URL)
{
	window.open(URL, "","resizable=yes, scrollbars=yes, toolbar=no, status=no, directories=no, menubar=no, screenX = 600, screenY = 400, width=700, height=350");
}

function OuvrirCentre(page,largeur,hauteur,options) {
  var top=(screen.height-hauteur)/2;
  var left=(screen.width-largeur)/2;
  window.open(page,"","top="+top+",left="+left+",width="+largeur+",height="+hauteur+","+options);
}

function ouvrirTelechargement(URL)
{
	window.open(URL, "","resizable=yes, scrollbars=auto, toolbar=no, status=no, directories=no, menubar=no, screenX = 600, screenY = 500, width=300, height=100");
}

function ouvrir_demande(URL)
{
	window.open(URL, "","resizable=yes, scrollbars=yes, toolbar=no, status=no, directories=no, menubar=no, screenX = 600, screenY = 400, width=510, height=310");
}

function Surlignement(id, booleen)
{
	if (booleen)
	{
		id.style.background = "#A9B4D0";
	}
	else
	{
		id.style.background = "#012B67";
	}
}

function Surlignement_princ(id, booleen)
{
	if (booleen)
	{
		id.style.background = "#ADA494";
	}
	else
	{
		id.style.background = "#FFFFFF";
	}
}

function verif(f)
	{
	if(f.nom.value == "")
	{
		alert("Veuillez entrer votre nom !");
		f.nom.focus();
		return false;
	}
	else
	if( (f.mail.value == "") && (f.phone.value == "") )
	{
		alert("Veuillez entrer votre numéro de téléphone ou votre adresse électronique !");
		f.phone.focus();
		return false;
	}
	else
			if	(f.mail.value!="") 
			{
				if	(!check_email(f.mail.value,"Votre "))
				{
					f.mail.focus();
					return false;
				}
			}
			else
				return true;
	}

function erreur(txt,n)
	{
	alert(txt);
	n.focus();
	}

function check_email(txt,dest)
	{
	pa = txt.indexOf("@");
	if	(pa <= 0)
		{
		alert(dest+"adresse éléctronique n'est pas valide. Vous avez oublié le nom de domaine.");
		return false;
		}
	pp = txt.lastIndexOf(".");
	if	((pp <= 0) || (pp < pa) || (pp == txt.length -1))
		{
		alert(dest+"adresse éléctronique n'est pas valide. Vérifiez le nom du fournisseur.");
		return false;
		}
	return true;	
	}