﻿// JScript File
function PasswordValidate(source,arguments)
{
    var strVal = new String(arguments.Value);
    if(strVal.length >= 4 && strVal.length<=30)
        arguments.IsValid = true;
    else
        arguments.IsValid = false;
}

