var MyAdvertisements = {
	
	do_click: function(aid)
	{
		if(use_xmlhttprequest != 1)
		{
			return true;
		}
		
		new Ajax.Request('http://thesimsupply.com/xmlhttp.php?action=do_click&my_post_key='+my_post_key, {
			method: 'post',
			postBody: 'aid='+encodeURIComponent(aid),
		});
		
		return false;
	},
};
