function direction(type,poiName,poiId){$('direction-from-to-form-container').style.display='';if(type=='to'){$('direction-from-input').value='';$('direction-to-input').value=poiName;$('toPoiId').value=poiId;$('fromPoiId').value='';}else{$('direction-from-input').value=poiName;$('direction-to-input').value='';$('toPoiId').value='';$('fromPoiId').value=poiId;}}
window.addEvent('domready',function(){var mapv={id:"poi-map",type:'small',pid:v_poiId,city:v_cityCode,width:182,height:182};function showMap(options){var scale=12;var container=$(options.id);var width=options.width;var height=options.height;var progress_id='load-map-progress_'+(new Date()).getTime();var latlon=(v_poi_lon==''||v_poi_lat=='')?'':(v_poi_lon+','+v_poi_lat);var mapurl=contextPath+'/yp/smap.jsp?type=min&poi='+encodeURIComponent(v_poiName)+'&city='+v_cityCode+'&latlon='+latlon+'&scale='+scale+'&width='+width+'&height='+height;var iframes='<iframe src="'+mapurl+'" width="'+width+'" height="'+height+'" frameborder="no" border="0" marginwidth="0" marginheight="0" scrolling="no" allowTransparency="true">';container.innerHTML='<span id="'+progress_id+'" style="display:block;">'+iframes+'</span>';}
showMap(mapv);new MenuHandler('direction-from-input','from_img','from2',contextPath+'/aj/my_local_in_from.do',0);new MenuHandler('direction-to-input','to_img','to2',contextPath+'/aj/my_local_in_to.do',0);$('to').addEvent('mouseout',function(){if(this.value.length==0&&$('from').value.length==0){initRouteShow();$("tolevel_0").style.display="none";$("fromlevel_0").style.display="none";}});$('from').addEvent('mouseout',function(){if(this.value.length==0&&$('to').value.length==0){initRouteShow();$("fromlevel_0").style.display="none";$("tolevel_0").style.display="none";}});});