// Verificação de resolução de vídeo recomendada

var bestwidth = 1024;
var bestheight = 763;
var larg = screen.width - 100;
var cor = 'FFFF00'

if (screen.width < bestwidth || screen.height < bestheight) {
msg = "Este site foi elaborado para a resolução mínima de <font color=" + cor +"><b>"
+ bestwidth + "x" + bestheight
+ "</b>px</font> (atual resolução: <font color=" + cor +"><b>" + screen.width + "x" + screen.height 
+ "</b>px</font>). &nbsp; Fortemente recomendamos sua reconfiguração para uma melhor navegabilidade!";
document.write('<table width=100% align=center>');
document.write('<tr>');
document.write('<td class=marquee_msg>');
document.write('<marquee direction=left scrollamount=2>');
document.write(msg);
document.write('</marquee>');
document.write('</td>');
document.write('</tr>');
document.write('</table>');
}
