function proceedPayment()
{
	var paymentMethod = $("input[@name=payment_method]:checked").val();
	var submitButton = $('#submit_payment');
	
	if(paymentMethod == "Pay Pal")
	{
		submitButton.before("<p style=\"font-weight:bold;\">Please wait while we connect you to the Paypal site.</p>");
		submitButton.attr("disabled","disabled");
	}
}
