function include(file)
{
 var script = document.createElement('script');
 script.src = file;
 script.type = 'text/javascript';
 script.defer = true;
 
 document.getElementsByTagName('head').item(0).appendChild(script);

}

include('http://www.map.gov.hk/static/gihs_interface.js');

function HKPL_StaticMap(id){
	showPopupStaticMap(id, 'en');
}

function HKPL_AdvancedMap(id){
	showPopupAdvancedMap(id, 'en');
}
