// JavaScript Document
function zoom(idzoom,e,sens,w,t) {
	var posx = 0;
	var posy = 500;
	if (!w) var w = 200;
	if (!e) var e = window.event;
	if (e.pageX || e.pageY)	{
		posx = e.pageX;
		posy = e.pageY;
	}
	else if (e.clientX || e.clientY) {
		posx = e.clientX + document.body.scrollLeft;
		posy = e.clientY + document.body.scrollTop;
	}

	with (document.getElementById(idzoom).style) {
		display='block';
		left = posx - ((sens == 'g') ? w+25 : 0);
		top = parseInt(posy) + t;
	}
}

function hidezoom(idzoom) {
	with (document.getElementById(idzoom).style) {
		display='none';
	}
}

function openPlan(Plan,larg,haut) {

  window.open("zoomPlan.php?Plan="+Plan,"","toolbar=0,location=0,directories=0,menuBar=0,scrollbars=NO,resizable=NO,width="+larg+",height="+haut+",left=0,top=0");

}

