function novaJanela(url,nomeJanela,posIniHorizontal,posIniVertical,tamHorizontal,tamVertical){
  window.open(url, ''+ nomeJanela +'', 'toolbar=no, status=yes, menubar=no, scrollbars=yes, location=no, resizable=yes, screenX= ' + posIniHorizontal + ', screenY= ' + posIniVertical + ', height= ' + tamVertical + ', width= ' + tamHorizontal + '');
}
function popUp(URL) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width=716,height=516,left = 482,top = 267');");
}