function getData(id) {
	var xmlhttp = false;

	try {
		xmlhttp = new ActiveXObject('Msxml2.XMLHTTP');
	} catch (e) {
		try {
			xmlhttp = new ActiveXObject('Microsoft.XMLHTTP');
		} catch (e) {
			xmlhttp = false;
		}
	}

	if (!xmlhttp && typeof XMLHttpRequest!='undefined') {
		xmlhttp = new XMLHttpRequest();
	}

	//var file = 'ajaxdata.php?bid=';
	//xmlhttp.open('GET', file + bid, true);

	xmlhttp.open('GET', 'dashboard.php?id=' + id, true);

	xmlhttp.onreadystatechange = function() {
		if (xmlhttp.readyState == 4) {
			var cnt = xmlhttp.responseText;
			if(cnt) {
				document.getElementById('d' + id).innerHTML = cnt;
			}
		}
	}

	xmlhttp.send(null);
	return;
}


function showLoading(id) {
	document.getElementById('d' + id).innerHTML = '<img src="lib/img/loader4.gif" vspace=\"20\" hspace=\"20\" />';
}

