function DivDynamique(id,nom,visib,pos,top,left,width,height)
{
 var TailleHaut= document.body.clientHeight;
 var TailleLarg= screen.width;
 var TailleHaut= screen.height;

 top1=(top*TailleHaut)/768;
 left1=(left*TailleLarg)/1024;

 if (width!="")
 {
  width1=(width*TailleLarg)/1024;
 }

 if (height != "")
 {
  height1=(height*TailleHaut)/768;
 }
 
// alert("Top "+top1+" LEFT "+left1);


 document.write("<div id=\""+id+"\" name=\""+nom+"\" style=\"visibility:"+visib+";  position: "+pos+"; left:"+left1+"px; top:"+top1+"px;");
 if (width!="")
 {
   document.write("width:"+width1+"px;");
 }
 if (height!="")
 {
   document.write("height:"+height1+"px;");
 }

document.write("\">");




}
function EndDiv()
{
  document.write("</div>");
}