google.load("jquery", "1.2.6");
function gp_convertIt() { 
	
	var gp_from = "GBP";
	var gp_to = "PLN";
	var gp_amount = "1";
	$.getJSON("http://www.geoplugin.net/currency_converter.gp?jsoncallback=?",{ from:gp_from, to:gp_to, amount:gp_amount }, function(output){		
		$("#mtrBot").html("<p>1 U.K. Pound Sterling (GBP) = " + output.to.amount + " Polish Zloty (PLN)</p>");
		$("#mtrBotPl").html("<p>1 U.K. Pound Sterling (GBP) = " + output.to.amount + " Polish Zloty (PLN)</p>");
		
	});
	 
} 
