// ZSite CMS
// JavaScript non-empty string validator
// string must not be empty
// (c) Zagorodnikov Anton 2007

function zsite_validate_nonempty(text)
{
    if(text.length < 1)
    {
	zsite_validation_error = "empty_string";
	return false;
    }
    
    return true;
}
