function picture(picgoal,picname) {
var w = 480, h = 340;
var popW = 600, popH = 449;
if (document.all || document.layers) {
   w = screen.availWidth;
   h = screen.availHeight;
}
var leftPos = (w-popW)/2, topPos = (h-popH)/2;
  PicWin=window.open("",picname,'status=0,scrollbars=0,resizable=0,width=' + popW + ',height=' + popH + ', screenX=' + topPos + ', screenY=' + leftPos + ', top=' + topPos + ',left=' + leftPos);
  PicWin.document.open();
  PicWin.document.writeln('<html>');
  PicWin.document.writeln('<head>');
  PicWin.document.writeln('<title>Mapa<\/title>');
  PicWin.document.writeln('<\/head>');
  PicWin.document.writeln('<body background="'+picgoal+'">');
  PicWin.document.writeln('<\/body>');
  PicWin.document.writeln('<\/html>');
  PicWin.document.close();
}
