function carregamapa(imagem){
  var novo;
  var winl = (screen.width - 620) / 2;
  var wint = (screen.height - 430) / 2;
  novo=window.open('','','menubar=no, resizable=yes, width=600, height=400, top='+wint+',left='+winl+'');
  novo.document.write('<html><head><style type="text/css"><!--.unnamed1 {cursor: pointer;}--></style><title>:: O Pizzaiolo ::</title></head><body leftmargin="0" topmargin="0" rightmargin="0" bottommargin="0" marginwidth="0" marginheight="0"><img src="'+imagem+'" alt="Clique para Fechar a Janela" width="1157" height="500" class="unnamed1" id="foto" onClick="window.close();" ></body></html>');
  novo.document.close()
}

function janela(URL, largura, altura){
  var novo;
  var winl = (screen.width - 620) / 2;
  var wint = (screen.height - 430) / 2;
  novo=window.open(URL,'','menubar=no, resizable=no, width='+largura+', height='+altura+', top='+wint+',left='+winl+'');
}