
function sendProduct(productId,msg) {

		var rand_no = Math.random();	

		var url = "http://www.muzyka.t-mobile.pl/restrain/wyslij-na-wap.htm?product="+productId+"&rand="+rand_no;
		new Ajax.Request(url, {
			method : 'get',
			onSuccess : function(transport) {
				alert(msg);
			}
		});
 
}


function sendProduct2(productId,msg) {

		var rand_no = Math.random();	

		var sendUrl = "http://www.muzyka.t-mobile.pl/restrain/wyslij-na-wap.htm?product="+productId+"&rand="+rand_no;
		jQuery.ajax({
			url: sendUrl, 
			type: 'GET',
			success: function(transport) {
				alert(msg);
			}
		});
}
