
function imgDetails(id) {
	
	$.ajax({
	  url: '../includes/ajax.php?id='+id,
	  cache: false,
	  dataType: 'text',
	  success: function(response){
		response = response.split('::::');
	    $('#cc').html(response[0]);
		$('#td_container').html(response[1]);
		document['fullsize'].src="images/"+id+".jpg";
	  }
	});
}

function updatePage(httpRequest,id) {
    if (httpRequest.readyState == 4) {
        if (httpRequest.status == 200) {
	
            var response = httpRequest.responseText;
			
			
			var cc = document.getElementById('cc');
			var td = document.getElementById('td_container');

			document['fullsize'].src="images/"+id+".jpg";
			
			alert(String(response[0]));
			
			var a = String(response[0]);
				
			cc.innerHTML = a;				
			td.innerHTML = String(response[1]);	
			
        } else {
            redirect(id);
        }
    }
}

function redirect(id) {
	window.location = '/commercial/portfolio/index.php?id='+id;
}