//-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 Show()
{
   open("video.htm", "", "toolbar=0,location=0,directories=0,scrollbars=0,resizable=0, status=0,menubar=0,width=400,height=400,left=300,top=100");
}
