function abreFiovest() { // Abre o formulário de inscrição online de vestibular em janela modal (exceto para GC). // Tamanho fixo só para IE. O resizabel não funciona nos outros.	var largura = 830; // default = IE	if(navigator.userAgent.toLowerCase().indexOf('chrome') > -1)		largura = 870; // GC	else if(navigator.userAgent.toLowerCase().indexOf('firefox') > -1) 		largura = 830; // FF	else if(navigator.appName.toLowerCase().indexOf('microsoft internet explorer') > -1) 		largura = 830; // IE	window.open("fiovest/inscricao/index.php" , "", "width="+largura+"px,scrollbars=yes,resizable=no,toolbar=no,menubar=no,directories=no,status=yes,location=no");}