﻿function IsNetscape() 
{
    return (navigator.getAppName() == "Netscape");
}

function IsNetscape4()
{
    return IsNetscape() && navigator.getAppVersion().StartsWith("4.");
}
