function putMenuLayerBegin(id,width,height,layerbg, layerborder)
{
 layerbgcolor=layerbg;
 layerstr='';
 if(dhtml==1)
 {
  layerstr='<div class="drop" id="drop'+id+'" ';
  layerstr=layerstr+'style="position:absolute;width:'+width+'px;height:'+height+'px;';
  layerstr=layerstr+'visibility:hidden;';
  layerstr=layerstr+'background-color:'+layerbgcolor+';'; 
  layerstr=layerstr+'border-right: '+layerborder+' 1px solid; border-top: '+layerborder+' 1px solid; border-left: '+layerborder+' 1px solid; border-bottom: '+layerborder+' 1px solid; ';
  layerstr=layerstr+'">';
 }
 else
 {
  layerstr='<layer class="drop" name="drop'+id+'" ';
  layerstr=layerstr+'width="'+width+'" height="'+height+'" ';
  layerstr=layerstr+'visibility="hide" ';
  layerstr=layerstr+'bgcolor="'+layerbgcolor+'" ';
  layerstr=layerstr+'>';
 }
 return layerstr;
}

function putMenuLayerEnd()
{
 layerstr='';
 if(dhtml==1)
 {
  layerstr='</div>';
 }
 else
 {
  layerstr='</layer>';
 }
 return layerstr;
}


