//  Teclas de atalho
function atalho() {
    	  
	 //F8 MANUTENCAO
	  if (event.keyCode==119) {
        location='manutencao/index.php'
        event.keyCode=0
        return false
     }
	 
	  //F9 PROFESSORES
	 if (event.keyCode==120) {
        location='diocese/index.php'
        event.keyCode=0
        return false
     }	
	 
}
document.onkeydown=atalho

