﻿/*
Copyright EBS 2009
*/
$(document).ready(function(){
   
    if($.browser.msie || $.browser.mozilla){        
        // do nothing     
    }
    else
    {
        // disable page and show dialog asking user to user another browser
        showOverlay();
        showAlert('We are experiencing technical difficulties with Chrome on this page. </br> We recommend you switch to Firefox or Internet Explorer.',
                    '420', '120', function(){location.href = "/social/spublic/Default.aspx";}
                 );
    }

});