/*
* Fonction Ajax Route de l'australie
* Copyright 2007 Enyware
* Author bmontuelle
*/

var destination = new Object();

/* Les hébergements */
destination.loadHebDetail = function(heb_id) {
		destination.hebWaitLoading();
		var param = 'kind=dest_heb_detail&heb_id='+heb_id;
		new net.ContentLoader('dataserver.php', destination.display, '', 'POST', param, '', 'dest_heb_list');

}

destination.loadHebList = function(ville_id) {
		destination.hebWaitLoading();
		var param = 'kind=dest_heb_list&ville_id='+ville_id;
		new net.ContentLoader('dataserver.php', destination.display, '', 'POST', param, '', 'dest_heb_list');
}

/* Les excursions */
destination.loadExcDetail = function(exc_id) {
		destination.excWaitLoading();
		var param = 'kind=dest_exc_detail&exc_id='+exc_id;
		new net.ContentLoader('dataserver.php', destination.display, '', 'POST', param, '', 'dest_exc_list');
}

/* Les excursions */
destination.loadExcList = function(ville_id) {
		destination.excWaitLoading();
		var param = 'kind=dest_exc_list&ville_id='+ville_id;
		new net.ContentLoader('dataserver.php', destination.display, '', 'POST', param, '', 'dest_exc_list');
}

destination.hebWaitLoading = function() {
	var div = document.getElementById('dest_heb_list');
	var height = div.offsetHeight;
	div.innerHTML = '<table width="262" height="'+height+'"><tr><td align="center" valign="top" style="padding-top: 68px;"><img src="img/ajax-loader.gif" width="25" height="25" align="center"></td></tr></table>';
}

destination.excWaitLoading = function() {
	var div = document.getElementById('dest_exc_list');
	var height = div.offsetHeight;
	div.innerHTML = '<table width="295" height="'+height+'"><tr><td align="center" valign="top" style="padding-left: 36px; padding-top: 68px;"><img src="img/ajax-loader.gif" width="25" height="25" align="center"></td></tr></table>';
}

destination.display = function() {
	var resp = this.req.responseText;
	var div_id = this.paramfonction;
	document.getElementById(div_id).innerHTML = resp;	
}
