lastmod  = document.lastModified;
annee   = lastmod.substr(6,4);
mois    = lastmod.substr(0,2);
jour    = lastmod.substr(3,2);
lastr   = jour + '/' + mois + '/' + annee;

H = "H" ; V = "V" ; P = "P"

Title   = "Micro Class galleries"
Titre   = "Les images de la Classe Micro" 
//function Head() {
  document.write("<head>")
  document.write("<meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1'>")
  document.write("<title>The Micro Class Galleries</title>")
  document.write("<link rel='SHORTCUT ICON' href='../images/microclass.ico'>")
  document.write("<link rel='stylesheet' type='text/css' href='../style.css'>")
  document.write("</head>")
//}

function DisplayImage(IMG,ORI) {
  document.write("<td style='text-align: Center; vertical-align: Middle'")
  if(ORI==P) document.write("colspan=3 width=270")
  else       document.write("width=130")
  IMG="A"+(100000+Group+IMG);IMG=IMG.substr(2,5)
  document.write(" height=140><a href='html/"+IMG+".html'><img src='"+Location+"thumbs/"+IMG+".jpg' border=1 ");
  if (ORI==H) document.write("width =128")
  if (ORI==V) document.write("height=128")
  if (ORI==P) document.write("width =268")
  document.write("></a></td>")
}

function DisplayLine(IMG1,ORI1,IMG2,ORI2,IMG3,ORI3,IMG4,ORI4) {
  document.write("<tr><td colspan=4><table align='center' cellpadding=0 cellspacing=0>")
  Pan=0; 
  if(ORI1==P)Pan=1;
  if(ORI2==P)Pan=Pan+1;
  if(ORI3==P)Pan=Pan+1;

  document.write("<tr>");DisplayImage(IMG1,ORI1);
  if(IMG2>0) { document.write("<td><img src='../images/spacer.gif' width=10 height=130></td>") ; DisplayImage(IMG2,ORI2) ; }
  if(IMG3>0) { document.write("<td><img src='../images/spacer.gif' width=10 height=130></td>") ; if(Pan<2)DisplayImage(IMG3,ORI3) }
  if(IMG4>0) { document.write("<td><img src='../images/spacer.gif' width=10 height=130></td>") ; if(Pan<1)DisplayImage(IMG4,ORI4) }
  document.write("</tr></table></td></tr>")
}

