function getExcerpt(id) {
		$('#basic-modal-content').modal();
        $('#modalContent').html('<image src="/gssi/images/ajax-loader.gif" />');
        $('#modalContent').load('/its-cgi/pa/store.cgi?action=View+Excerpt&store_id='+id)

		

}

function getReview(id) {
		$('#basic-modal-content').modal();
        $('#modalContent').html('<image src="/gssi/images/ajax-loader.gif" />');
        $('#modalContent').load('/its-cgi/pa/store.cgi?action=View+Review&store_id='+id)

		

}

	function updateGallery(url,div) {
		$.ajax({
			url: url,
			dataType: 'HTML',
			cache: false,
			complete: function (data) {
				var html = data.responseText;
				$(div).html(html);
			},
			error: function (XMLHttpRequest, textStatus, errorThrown) {
				// typically only one of textStatus or errorThrown
				// will have info
				//this; // the options for this ajax request
				alert("error");
			}
		
		});
	}
