function janela(url, width, height, scroll, resizable, name) {
 var Win = window.open(url, name,'width=' + width + ',height=' + height +',scrollbars=' + scroll + ',resizable=' + resizable +',menubar=no,status=no,left=50,top=50');
 Win.focus();
}
