function RechAut(trm) {
  var l = screen.availWidth - 100;
  var h = screen.availHeight - 100;
  var url="/public/mistral/enlumine_fr?ACTION=CHERCHER&FIELD_3=AUTR&VALUE_3=" + trm + "&FIELD_8=DOMN&VALUE_8=ouvrage";
  properties = "toolbar=no,location=no,directories=no,status=1,"
   + "menubar=no,scrollbars=1,resizable=1,"
   + "width=" + l + ",height=" + h +",top=0,left=20";
 window.open(url, "Waut", properties);
}

function RechTitre(trm) {
  var l = screen.availWidth - 100;
  var h = screen.availHeight - 100;
  var url="/public/mistral/enlumine_fr?ACTION=CHERCHER&FIELD_4=TITR&VALUE_4=" + trm + "&FIELD_8=DOMN&VALUE_8=ouvrage";
  properties = "toolbar=no,location=no,directories=no,status=1,"
   + "menubar=no,scrollbars=1,resizable=1,"
   + "width=" + l + ",height=" + h +",top=0,left=20";
 window.open(url, "Wtitr", properties);
}

function RechSujet(trm) {
  var l = screen.availWidth - 100;
  var h = screen.availHeight - 100;
  var url="/public/mistral/enlumine_fr?ACTION=CHERCHER&FIELD_2=SUJET&VALUE_2=" + trm + "&FIELD_8=DOMN&VALUE_8=decor";
  properties = "toolbar=no,location=no,directories=no,status=1,"
   + "menubar=no,scrollbars=1,resizable=1,"
   + "width=" + l + ",height=" + h +",top=0,left=20";
 window.open(url, "Wsujet", properties);
}

function RechDom(trm) {
  var l = screen.availWidth - 100;
  var h = screen.availHeight - 100;
  var url="/public/mistral/enlumine_fr?ACTION=CHERCHER&FIELD_6=NOMENC&VALUE_6=" + trm + "&FIELD_7=DOMN&VALUE_7=ouvrage";
  properties = "toolbar=no,location=no,directories=no,status=1,"
   + "menubar=no,scrollbars=1,resizable=1,"
   + "width=" + l + ",height=" + h +",top=0,left=20";
 window.open(url, "Wdomn", properties);
}

function RechDecor(trm) {
  var l = screen.availWidth - 100;
  var h = screen.availHeight - 100;
  var url="/public/mistral/enlumine_fr?ACTION=CHERCHER&FIELD_7=TYPDEC&VALUE_7=" + trm + "&FIELD_8=DOMN&VALUE_8=ouvrage";
  properties = "toolbar=no,location=no,directories=no,status=1,"
   + "menubar=no,scrollbars=1,resizable=1,"
   + "width=" + l + ",height=" + h +",top=0,left=20";
 window.open(url, "Wdecor", properties);
}

function RechCtx(trm) {
  var l = screen.availWidth - 100;
  var h = screen.availHeight - 100;
  var url="/public/mistral/enlumine_fr?ACTION=CHERCHER&FIELD_7=CONTXT&VALUE_7=" + trm + "&FIELD_8=DOMN&VALUE_8=decor";
  properties = "toolbar=no,location=no,directories=no,status=1,"
   + "menubar=no,scrollbars=1,resizable=1,"
   + "width=" + l + ",height=" + h +",top=0,left=20";
 window.open(url, "Wctx", properties);
}

function NotRef(trm) {
  var l = screen.availWidth - 100;
  var h = screen.availHeight - 100;
  var url="/public/mistral/enlumine_fr?ACTION=CHERCHER&FIELD_98=REF&VALUE_98=" + trm;
  properties = "toolbar=no,location=no,directories=no,status=0,"
   + "menubar=no,scrollbars=1,resizable=1,"
   + "width=" + l + ",height=" + h +",top=0,left=20";
 window.open(url, "Wref", properties);
}

function AffImg(chemin,txt)
{
  properties = "toolbar=0,location=0,directories=0,status=0,"
   + "menubar=0,scrollbars=1,resizable=1,"
   + "width=700,height=550,top=0,left=50";
  i1 = new Image;
  i1.src = chemin;
  html = '<HTML><HEAD><TITLE>'+chemin+'</TITLE></HEAD><BODY background="/documentation/enlumine/img/trame01_illu.gif"><CENTER><A HREF="javascript:window.close()"><IMG SRC="'+chemin+'" BORDER="0"></A><br><font color=#728200>'+txt+'</font></CENTER></BODY></HTML>';
popupImage = window.open('','Image',properties);
popupImage.document.open();
popupImage.document.write(html);
popupImage.document.close()  
}


