﻿function UnloadMe(ID) {

    try 
    {
         
        var b = document.getElementById(ID);
        if (b != null) 
        {
            if (event.clientY < 0) 
            {
                b.click();
            }
        }
    }
    catch (err)
    {
        //alert('UnloadMe: ' + err.description);
    }
 
}