function getAlertStatus(){
 			var URL =  SITEURL +"/ajax/process.php?action=alertstatus";  
   			jQuery.ajax({
			type: "POST",
			url : URL,  
			dataType : "html",
			success : function(response){ 
  				var result =  response.replace(/^\s\s*/, '').replace(/\s\s*$/, '')  ; 
				$('#div_other_purchase_alert').html(result);
   			},
			error: function(){
				$("#div_cart_msg").hide();
				alert("Error occured during Ajax request...");
			}
		});					  

}//function
function closeAlert(){
 			var URL =  SITEURL +"/ajax/process.php?action=closealert";  
   			jQuery.ajax({
			type: "POST",
			url : URL,  
			dataType : "html",
			success : function(response){ 
  				var result =  response.replace(/^\s\s*/, '').replace(/\s\s*$/, '')  ; 
				$('#div_other_purchase').hide();
   			},
			error: function(){
				$("#div_cart_msg").hide();
				alert("Error occured during Ajax request...");
			}
		});					  
}//function

function closeUserFormAlert(){
 			var URL =  SITEURL +"/ajax/process.php?action=closeuserformalert";  
   			jQuery.ajax({
			type: "POST",
			url : URL,  
			dataType : "html",
			success : function(response){ 
  				var result =  response.replace(/^\s\s*/, '').replace(/\s\s*$/, '')  ; 
				$('#div_user_form_alert').hide();
   			},
			error: function(){
				$("#div_cart_msg").hide();
				alert("Error occured during Ajax request...");
			}
		});					  
}//function
