////---------------------------- Redirect Merchant -----------------------------------////

function redirect_merchant()

{	
	window.location="/merchants/display/"+$('#column_merchant').val();
}

////---------------------------- ### Redirect Merchant -----------------------------------////

////---------------------------- Ajax Call -----------------------------------////

function ajax_call(page,method,form)
{

	$('#msg_err').html('');
	$('#msg_err').slideUp();
	$('#msg_ok').slideUp();
	$('#msg_ok').html('');

	$.ajax(
	{ 
		url: "/"+page, 
		type: method,
		context: document.body,
		data: $('#'+form).serialize(),
		//dataType:  'html', 
		success: function(data)
		{
			//alert(data);
			
	 		// Display modal if needed
	 		if (data == "ok")
	 		{
	
				$('#msg_ok').html("Your email was successfully sent.");
				$('#msg_ok').slideDown();
	 		}
	 		else
	 		{
	 			$('#msg_err').html("<b>Please correct the following:</b><br /><br />"+data);
				$('#msg_err').slideDown();
	 		}

		}
	});

}

////---------------------------- ### Ajax Call -----------------------------------////
