function RadPasswordMaskPart ()
{

};

RadPasswordMaskPart.prototype = new RadMaskPart();

RadPasswordMaskPart.prototype.IsCaseSensitive = function ()
{
	return true;
};


RadPasswordMaskPart.prototype.GetVisValue = function ()
{
    if (this.value.toString() == "")
    {
		return this.PromptChar;
    }
    return '*';
};


RadPasswordMaskPart.prototype.SetValue = function (value, offset)
{
	this.value = value;
	return true;
};

//BEGIN_ATLAS_NOTIFY
if (typeof(Sys) != "undefined")
{
    if (Sys.Application != null && Sys.Application.notifyScriptLoaded != null)
    {
        Sys.Application.notifyScriptLoaded();
    }
}
//END_ATLAS_NOTIFY

