function fenetre(image,larg,haut){
	var largeur = (larg*1)+10;
	var hauteur = (haut*1)+10;
	nouvellefenetre = window.open("","","width=" + largeur + ",height=" + hauteur+",scrollbar='no',resizable='yes'");
	nouvellefenetre.document.open();

	var htmltext = "<html><head><title>Image</title></head><body style='margin:0px'>";
	htmltext += "<table align='center' height='100%'><tr><td valign='middle'><img src='"+image+"'></td></tr>"; 
	htmltext += "</table>";
	htmltext += "</body></html>";
	nouvellefenetre.document.write(htmltext);//on ecrit dans le popup
	nouvellefenetre.document.close();
    
	nouvellefenetre.focus();
}

    function load_img(champs,img_pt,img_gd,alt){
      document.getElementById(champs).innerHTML = '<img name="img_click" src="photo/'+img_pt+'" alt="article en fibre de bambou" class="bordimage">';
      
    }


function info(zone){
	if(document.getElementById(zone).style.display == 'none'){
		
		document.getElementById(zone).style.top = y+10;
		document.getElementById(zone).style.left = x+10;
		document.getElementById(zone).style.display = 'block';
		
	}
	else{
		document.getElementById(zone).style.display = 'none';
	}
}
function position(e)
{
	x = (navigator.appName.substring(0,3) == 'Net') ? e.pageX : event.x+document.body.scrollLeft;
	y = (navigator.appName.substring(0,3) == 'Net') ? e.pageY : event.y+document.body.scrollTop;
                    
	//y et x par rapport a la carte
	//window.status = 'X: '+x+'/Y: '+y;
	return x , y;
}


