function PopUp(pagina,largura,altura,cima,esquerda){
   var opcoes;
   opcoes = 'toolbar=no,location=no,status=no,menubar=no,scrollbars=no,'+
       'resizable=yes, width='+largura+', height='+altura+', top='+cima+', left='+esquerda;
   window.open(pagina,'login',opcoes);
} 
function inscrever(){
   window.open('ficha.html','ficha','toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=yes');
} 
