function VerifyEmpty(ObjectName, alert_text, ObjectField)
{
    var strTemp;
    var    txtEmpty=": Это значение необходимо ввести!";
    var    txtQuote=": Пожалуйста, не используйте одинарные кавычки!";

    strTemp = ObjectField.value;

    if (strTemp.indexOf("'") != -1)
    {
        if (alert_text != "") 
        {
            alert_text = alert_text + "\n"
        }
        alert_text= alert_text + ObjectName + txtQuote;
    }

    if (strTemp.length == 0)    
    {
        if (alert_text != "") 
        {
            alert_text = alert_text + "\n"
        }
        alert_text=alert_text + ObjectName + txtEmpty;
    }

    return alert_text;
}

