function entre(img,width,height) {
	document.images['imgprod'].src=img
	if (document.getElementById && img!='../images/produits/nofoto.gif') {
		document.getElementById('produit').style.width=width
		document.getElementById('produit').style.height=height
		document.images['imgprod'].width=width
		document.images['imgprod'].height=height
		document.getElementById('produit').style.visibility="visible"
	}
}
function deplace(ev) {
var wintop=parseInt(document.body.scrollTop);
var avail=document.body.clientHeight;

var leftop=parseInt(document.body.scrollLeft);
var availw=document.body.clientWidth;
if (document.getElementById) {
	//IE
	
	var valtop=wintop+ev.clientY;
	var valeft=leftop+ev.clientX+15;
	
	if ((valeft+parseInt(document.getElementById('produit').style.width)-leftop+15)>availw) {
		valeft=availw-parseInt(document.getElementById('produit').style.width)+leftop-5;
		}
	document.getElementById('produit').style.left=valeft;
	if ((valtop+parseInt(document.getElementById('produit').style.height)-wintop)>avail) {
		valtop=avail-parseInt(document.getElementById('produit').style.height)+wintop-5;
		}
	document.getElementById('produit').style.top=valtop;
	}
}

function efface() {
if (document.getElementById) {
document.getElementById('produit').style.visibility="hidden";
//document.getElementById('imgprod').src="../images/annonces/camera-icon.png";
document.images['imgprod'].src="../images/annonces/camera-icon.png";
}
}

