function mailAndPayment() {
	var url = '/proxy?url=' + encodeURIComponent('http://haryg.com/v2/wwww/index.php?page=Basket.Mailing');
	// notice the use of a proxy to circumvent the Same Origin Policy.
	var response = false;
	new Ajax.Request (
		url, {
			method: 'post',
				onSuccess: function(transport) {
				document.getElementsByTagName('form')[0].action='http://haryg.com/v2/wwww/cgi-bin/payboxv3.cgi';
				response = true;
			}
		}
	);
	return response;
}
