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