﻿function IsEmpty(id)
{
    var ctl = document.getElementById(id);
    if ((ctl != null) && (ctl.Value != null) && (ctl.Value.length > 0))
    {
        return false;
    }
    
    return true;
}
