﻿// JScript File

function confirmLoginFields()
{
    if ((trim(document.getElementById('txtUserName').value) == '') || (trim(document.getElementById('txtPassword').value) == ''))
    {
        alert('Please provide a valid Username and Password');
        return false;  
    }
    else
        return true;      
}
