﻿/// <reference path="VEJS/VeJavaScriptIntellisenseHelper.js" />

function pageLoad()
{
   var theLat = document.getElementById("ctl00_ContentPlaceHolderMap_GeoIPLat");
   var theLong = document.getElementById("ctl00_ContentPlaceHolderMap_GeoIpLong");
    
    if(theLat != null && theLong != null ) {
        RB_initMapLatLon("myMap",theLat.value,theLong.value,8);
    }
}
 
function eventWizard(lat,lon)
{
   up = document.getElementById("ctl00_ContentPlaceHolderMap_upEventWizard");
   dv = document.getElementById("ctl00$ContentPlaceHolderMap$hfEventWizard");
   dv.value = lat+":"+lon;

   __doPostBack("ctl00_ContentPlaceHolderMap_upEventWizard","");

}

 
