// <!-- <![CDATA[
function ValidEmail(EmailAddress)
{
	if ((EmailAddress.indexOf(' ') >= 0) || (EmailAddress.indexOf(';') >= 0) || (EmailAddress.indexOf(',') >= 0) || (EmailAddress.indexOf('@') < 1)) return false;
	else if (EmailAddress.substr(EmailAddress.indexOf('@')).indexOf('.') < 2) return false;
	else if (EmailAddress.substr(EmailAddress.indexOf('.',EmailAddress.indexOf('@'))).length < 3) return false;
	else return true;
}
function montreImgBig(id)
{
	var pos = findPos (id);
	/*
	x=pos[0]-620;
	y=pos[1]-180;
	*/
	x=pos[0]-290;
	y=pos[1]-290;
	//document.getElementById(id).style.display="block";
	if(document.getElementById(id+"_big"))
	{
		document.getElementById(id+"_big").style.visibility="visible";
		document.getElementById(id+"_big").style.left=x+'px';
		document.getElementById(id+"_big").style.top=y+'px';
	}
}
function cache(id)
{
	//document.getElementById(id).style.display="none";
	if(document.getElementById(id+"_big"))
		document.getElementById(id+"_big").style.visibility="hidden";
}
function findPos(id)
{
	var affiche="";
	obj=document.getElementById(id);
	if(obj)
	{
		var curleft = obj.offsetLeft || 0;
		var curtop = obj.offsetTop || 0;
		if (obj.offsetParent) {
			curleft = obj.offsetLeft;
			curtop = obj.offsetTop;
			while (obj = obj.offsetParent) {
					curleft += obj.offsetLeft;
					curtop += obj.offsetTop;
					affiche+="\nobj: "+obj+" curleft: "+curleft+" curtop: "+curtop;
			}
		}
	}
	//alert(affiche);
	//alert("curleft: "+curleft+",curtop: "+curtop);
	return [curleft,curtop];
}
function popup_mdp()
{
	mafenetre=window.open("oublie_mot_de_passe.php","mot_de_passe_oublie","resizable=no, location=no, top=30, left=30, width=650, height=280, menubar=no, status=no, scrollbars=yes, menubar=no");
	mafenetre.focus();
}
function popup_detail_produit(page)
{
	mafenetre=window.open(page,"detail_produit","resizable=no, location=no, top=30, left=30, width=1010, height=620, menubar=no, status=no, scrollbars=yes, menubar=no");
	mafenetre.focus();
}
function popup_panier(page)
{
	mafenetre=window.open(page,"popup_panier","resizable=no, location=no, top=30, left=30, width=800, height=600, menubar=no, status=no, scrollbars=yes, menubar=no");
	mafenetre.focus();
}
// ]]> -->
