var nbdoc = -1;

function affiche(image,titre) {
a = window.open("",titre,"scrollbars,width=500,height=500,resizable,status,toolbar");
a.document.write('<HTML><HEAD><TITLE>Images ' + titre + '</TITLE></HEAD><BODY>' + image + '</BODY></HTML>');
a.document.close();
a.focus();
nbdoc--;
}

function affichedoc(docu) {
b = window.open(docu,"fen","scrollbars,width=500,height=500,resizable,status,toolbar");
b.focus();
nbdoc--;
}
