//-Javascript appelant la popup ZOOM de l'image
function Zoom(ID,WidthImg,HeightImg)
{
   var width = ((WidthImg + 35) > screen.width) ? screen.width - 35: WidthImg + 35;
   var height = ((HeightImg + 60) > screen.height) ? screen.height - 60: HeightImg + 60;

   open("zoom.asp?ID=" + ID, "", "toolbar=0,location=0,directories=0,scrollbars=1,resizable=1, status=0,menubar=0,width=" + width + ",height=" + height +",left=5,top=5");
}

function MM_jumpMenu(targ,selObj,restore){ //v3.0
  if (selObj.options[selObj.selectedIndex].value!=-1) {
	  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  }
  if (restore) selObj.selectedIndex=0;
}

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
