﻿function IsMozilla()
{
    return (navigator.userAgent.indexOf("Firefox") != -1)||(navigator.userAgent.indexOf("Netscape") != -1);
}

function IsInternetExplorer()
{
    return (navigator.userAgent.indexOf("MSIE") != -1);
}

