function EmptyCheck(Check, ErrMsg)
{
   if (Check=='')
   {
      return ErrMsg;
   }
   return '';
}

