function ejs_nodroit() {
	return(false);
}

function caheSMenu()
{
//document.getElementById("menuContent").style.display="none";
for(i=1;i<=9;i++)
document.getElementById("smenu"+i).style.display="none";
}

function getLeft(deKoi)
{
	var obj = document.getElementById(deKoi);
	var curleft = 0;

	if (obj.offsetParent)
	{
		while (obj.offsetParent)
		{
			curleft += obj.offsetLeft
			obj = obj.offsetParent;
		}
	}
	else
	{
		if (obj.x)
			curleft += obj.x;
	}

	if(document.all)
		curleft+=5;
	
	return (curleft+'px');
}


// ENVOIE DE MAILS
function mail(nom,domaine)
{
 var txt = 'location=no,toolbar=no,directories=no,menubar=no,resizable=no,scrollbars=no,status=no,width=10,height=10,screenY=100,screenX=100';
 window.open('mailto:'+ nom + '@' + domaine,'Mail',txt);
}

function zoomProduit(nom_page,nom_fenetre,w,h){
	var hei = h + 10;
	var wid = w + 10;
	window.open(nom_page,nom_fenetre,config='width='+wid+',height='+ hei +'');
	
}

function changeZoomProduit(img,zoom){
	document.pimg.src='images/produits/'+img;
	if(zoom!="") {
		document.getElementById('zoom').href="javascript:zoomProduit('image_popup.php?image="+zoom+"','zoom',100,100);";
		document.getElementById('zoom_div').innerHTML="<a href=\"javascript:zoomProduit('image_popup.php?image="+zoom+"','zoom',100,100);\"><img src='/charte/zoom.gif' border='0' alt='zoom' /></a>";
	}
	else {
		document.getElementById('zoom').href="javascript:void(0)";
		document.getElementById('zoom_div').innerHTML="";
	}
}

function checkLayer()
{
	//alert(navigator.userAgent);
	if(document.panier.produit_attribut_id.options[document.panier.produit_attribut_id.selectedIndex].value=='-1')
	{
		if (window.navigator.userAgent.indexOf("MSIE 6.0")!=-1) 
			alert("Merci de choisir votre taille ...");
		else
			Element.show('Layer_pan');
	}
	else 
		document.panier.submit();
}

function cacheLayer()
{
	Element.hide('Layer_pan');
}
