<!--
var useragent = navigator.userAgent;
var bName = navigator.appName;
var bVersao = navigator.appVersion

var pos = useragent.indexOf('MSIE');
if (pos > -1) {
bVer = useragent.substring(pos + 5);
var pos = bVer.indexOf(';');
var bVer = bVer.substring(0,pos);
}

if (bName == "Netscape") {
var bVer = useragent.substring(8);
var pos = bVer.indexOf(' ');
var bVer = bVer.substring(0, pos);
}

if (bName == "Netscape" && parseInt(bVersao) >= 5) {
var pos = useragent.lastIndexOf('/');
var bVer = useragent.substring(pos + 1);
}

var pos = useragent.indexOf('Firefox');
if (pos > -1) {
var bName = "Firefox";
bVer = useragent.substring(pos + 8);
var pos = bVer.indexOf('.');
var bVer = bVer.substring(0,pos);
}

if ((bName == "Microsoft Internet Explorer" && parseInt(bVer) <=4) || (bName == "Netscape" && parseInt(bVer) <=5))
{
alert("NOTA:\nAparentemente está a utilizar um programa de navegação cuja compatibilidade com as páginas internet da Novimed Negócios não foi testada.\n\nRecomendamos os seguintes programas:\nMicrosoft Internet Explorer (versão 5 ou superior); Mozilla Firefox (versão 1 ou superior); Netscape (versão 6 ou superior).");
}
//   -->