//-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.aspx?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 PopRubrique(id, largeur, hauteur, gauche, haut, ascenceur, retaille)
{
 var width = (largeur == null) ? 600 : largeur;
 var height = (hauteur == null) ? 700 : hauteur;
 var left = (gauche == null) ? 5: gauche;
 var top = (haut == null) ? 5: haut;
 var scroll = (ascenceur == null) ? 1: ascenceur;
 var resize = (retaille == null) ? 1: retaille;

 window.open("PopRubrique.aspx?id=" + id, "poprub", "toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=" + scroll + ",resizable=" + resize + ",width=" + width + ",height=" + height + ",left=" + left + ",top=" + top);

}

function PopMessage(id, largeur, hauteur, gauche, haut, ascenceur, retaille)
{
 var width = (largeur == null) ? 600 : largeur;
 var height = (hauteur == null) ? 700 : hauteur;
 var left = (gauche == null) ? 5: gauche;
 var top = (haut == null) ? 5: haut;
 var scroll = (ascenceur == null) ? 1: ascenceur;
 var resize = (retaille == null) ? 1: retaille;

 window.open("PopMessage.aspx?id=" + id, "poprub", "toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=" + scroll + ",resizable=" + resize + ",width=" + width + ",height=" + height + ",left=" + left + ",top=" + top);

}
