You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// use browser sniffing to determine if IE or Opera (ugly, but required) --- basescript/idea by webbugtrack.blogspot.com, debugged by florensia-base.com
var isOpera, isIE = false;
if (typeof(window.opera) != 'undefined') { isOpera = true; }
if (navigator.userAgent.indexOf('Internet Explorer')) { isIE = true; }