function show_amazon_ads(adsParm) {
	var country_code = 'US';//geoip_country_code();  
	var parmSplitted = adsParm.split("/");
	var category = parmSplitted[0];
	var searchText = parmSplitted[1];

	if (country_code == "GB"){
		var ads_code = '<iframe src="http://rcm-uk.amazon.co.uk/e/cm?t=qhpho-21&o=2&p=14&l=st1&mode='+ category +'-uk&search='+ searchText +'&fc1=282828&lt1=_blank&lc1=C35C00&bg1=BFBFBF&f=ifr" marginwidth="0" marginheight="0" width="160" height="600" border="0" frameborder="0" style="border:none;" scrolling="no"></iframe>';
	}else{  
		var ads_code = '<iframe src="http://rcm.amazon.com/e/cm?t=qhpho-20&o=1&p=14&l=st1&mode='+ category +'&search='+ searchText +'&fc1=282828&lt1=_blank&lc1=C35C00&bg1=BFBFBF&f=ifr" marginwidth="0" marginheight="0" width="160" height="600" border="0" frameborder="0" style="border:none;" scrolling="no"></iframe>';
	}

	document.write(ads_code);
}

