// Preload Images
img1 = new Image(16, 16);  
img1.src="/doctor/plugins/login/images/spinner.gif";

img2 = new Image(220, 19);  
img2.src="/doctor/plugins/login/images/ajax-loader.gif";

// When DOM is ready
$(document).ready(function(){

    // Launch MODAL BOX if the Login Link is clicked
    $("#login_link").click(function(){
        var browserName=navigator.appName;
        if (browserName=="Netscape")
        {
         $('#login_form').modal();
        }
        else
        {
          window.location = '/Account/LogOn';
        }
        
    });
});
