// JavaScript Document
function abrirPopUp(url){
mywindow = window.open (url, "mywindow","location=0, directories=0, status=0,scrollbars=1, width=300, height=480"); 
valor1 = screen.width - 340;
mywindow.moveTo(valor1,40);
}

function abrirInformacaoLegal(){
mywindow = window.open ('informacao_legal.html', "mywindow","location=0, directories=0, status=0,scrollbars=1, width=510, height=560"); 
valor1 = screen.width - 340;
mywindow.moveTo(valor1,40);
}
