//alert('global');
function newWindow(url, width, height)
{
  var attr='toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,copyhistory=no';
  if (height) attr+=', height='+height;
  if (width) attr+=', width='+width;
  //var loca='http://mapserver.maptech.com/bp/mapserver/index.cfm?lat='+lat+'&lon='+lon+'&type=1&scale='+scale+'&icon=AnimArrowsIn_red_64_64_-32_-32|'+lat+'|'+lon+'|^'+title;
  window.open(url, '', attr);
}

