﻿// Function name : fnRemoveLblMsg
// Author: Amanpreet
// Date : 16th Oct
// Description :  used to remove visibility of Error msg for invalid credentials
// in Login
function fnRemoveLblMsg() {
    // alert("in remove lbl");
    var lblLoginMsg = document.getElementById("lblLoginMsg");
    lblLoginMsg.style.visibility = "hidden";

}


