﻿var BOOL_TRUE="True",BOOL_FALSE="False";function doMapDialog(m,o,n,l,j,p,k){var f=document.getElementById(m),h=document.getElementById(o),g=document.getElementById(n),e=document.getElementById(l),c=document.getElementById(j),i=document.getElementById(p),d=document.getElementById(k),a={};a.address=f.value;a.city=h.value;a.state=g.value;a.postalCode=e.value;a.countryCode=c.value;a.link=i.value==BOOL_TRUE;a.directions=d.value==BOOL_TRUE;var b=window.showModalDialog(MapDialogUrl,a,"scroll:no;center:yes;help:no;status:yes;dialogHeight:446px;dialogWidth:465px");if(b){f.value=b.address;h.value=b.city;g.value=b.state;e.value=b.postalCode;c.value=b.countryCode;i.value=b.link?BOOL_TRUE:BOOL_FALSE;d.value=b.directions?BOOL_TRUE:BOOL_FALSE;return true}return false}function btnMapOnClick(a){var b=MapLinkBaseUrl+"?"+a;window.open(b,"_blank","width=400, height=400")}