//-------------------------------------------------------------------------------------------------------------------------------
//     ________________________________
//____/          STARTLOADING          \_________________________________________________________________________________________
//-------------------------------------------------------------------------------------------------------------------------------
function startLoading(strLayer)
{
   document.getElementById(strLayer).className = "loadingdiv";
};
//-------------------------------------------------------------------------------------------------------------------------------
//     ________________________________
//____/           STOPLOADING          \_________________________________________________________________________________________
//-------------------------------------------------------------------------------------------------------------------------------
function stopLoading(strLayer)
{
   document.getElementById(strLayer).className = "";
}
//-------------------------------------------------------------------------------------------------------------------------------
