var isNav = (window.navigator.appName.indexOf('Netscape') != -1);
if (isNav)
{
// Netscape
if (window.navigator.userAgent.indexOf('Mozilla/2.') != -1)
{
iversion = 2;
}
if (window.navigator.userAgent.indexOf('Mozilla/3.') != -1)
{
iversion = 3;
}
if (window.navigator.userAgent.indexOf('Mozilla/4.') != -1)
{
iversion = 4;
}
if (window.navigator.userAgent.indexOf('Mozilla/5.') != -1)
{
iversion = 5;
}
if (iversion==-1)
{
iversion = 1;
}
}
if (isNav && (iversion <= 4))
{
document.write('This function is not supported on Netscape Navigator 4 and older browsers. Please upgrade to a modern browser application.');
}
else
{document.write('');
document.write('');
document.write('');}