/* hafas_map_zoomfixedcoords.js */
/* built: 16.09.2004 */

function uninit(){
  /* Deinitialize these events -> by an empty function */
  /* Netscape 7.2 and Firefox 1.0 BugFix 13.10.2004    */
  document.onmousedown = null
  document.onmousemove = null
  document.onmouseup = null
  }
function zoomTo(idxVal,idxTxt,keepClickAction){
  var station = idxVal.split("|");
  zoomString = mapBaseURL +"performGis=1";
  zoomString += "&REQMapCenterCoordType=GEO";
  zoomString += "&REQMapCenterX="+ station[0];
  zoomString += "&REQMapCenterY="+ station[1];
  zoomString += "&REQMapScaling="+ 2*station[2];
  zoomString += "&" + globalMap + keepClickAction;
  window.location.href=zoomString;
  }


