function PutElement(idname)
{
 move = true
 if (move)
    {
      document.getElementById(idname).style.display = "block";
    }
 else alert('UPS, Contact administrator'+idname)
}

function RemoveElement(idname)
{
 move = true
 if (move)
    {
      document.getElementById(idname).style.display = "none";
    }
 else alert('UPS, Contact administrator'+idname)
}
