function mapa(url)
{
 okno = null;
 
 if (screen.width<=800)
  { okno=window.open(url+'/mapa1.php?res=1', 'Mapa', 'height=580, width=760, left=0, top=0') }
 else
  { okno=window.open(url+'/mapa2.php?res=2', 'Mapa', 'height=720, width=910, left=0, top=0') }

 if (okno)
  { okno.focus(); }
}

