function map_area(area_id)
{

	document.getElementById('loadmap').innerHTML = '   <div style="padding: 1em; color:#FFFFCC">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Loading Component... </div>';
document.getElementById('loadmap').style.display='';
document.myForm.loadding.value='1';
	var	xScript;
	xScript = document.createElement('SCRIPT');
	xScript.setAttribute('type','text/javascript');
	xScript.setAttribute('id','JSAJAXListProduct');
	xScript.setAttribute('src','hotel_ajax.php?action=map_area&area_id='+area_id);
	document.getElementsByTagName('BODY')[0].appendChild(xScript);
	
}
function map_location(location_id)
{
	document.getElementById('loadmap').innerHTML = '   <div style="padding: 1em; color:#FFFFCC">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Loading Component... </div>';
document.getElementById('loadmap').style.display='';
document.myForm.loadding.value='1';
	var	xScript;
	xScript = document.createElement('SCRIPT');
	xScript.setAttribute('type','text/javascript');
	xScript.setAttribute('id','JSAJAXListProduct');
	xScript.setAttribute('src','hotel_ajax.php?action=map_location&location_id='+location_id);
	document.getElementsByTagName('BODY')[0].appendChild(xScript);
	
	
}
