﻿/// <reference path="../../../Scripts/jquery-1.4.1.min-vsdoc.js" />
/// <reference path="../Namespace/NameSpace.js" />

$(function() {
    AMV.JavaScript.Logic.Utilities.Error.HandleFormRequestPlates();
});

AMV.JavaScript.Logic.Utilities.Error.HandleFormRequestPlates = function() {
    if ($(".FormRequestError").length != 0) {
        window.setTimeout(function() {
            $(".FormRequestError").fadeOut(200);
        }, (AMV.JavaScript.Logic.Utilities.AlertErrorTime() + 1000));
    }
    if ($(".FormRequestSuccess").length != 0) {
        window.setTimeout(function() {
            $(".FormRequestSuccess").fadeOut(200);
        }, (AMV.JavaScript.Logic.Utilities.AlertSuccessTime() + 1000));
    }
}


