var google_ad_client		= 'pub-6852032732218605';

var google_ad_channel		= '3305729401,4452761588';

var google_ad_output		= 'js';
var google_ad_type			= 'text';
var google_language			= 'en';
var google_encoding			= 'latin1';
var google_safe				= 'high';
var google_feedback 		= 'on';

var google_ad_section		= '';

var google_max_num_ads		= '4';

window.google_ad_request_done = function(google_ads)
{	
	if (google_ads.length == 0)
	{
		return;
	}


	/* the worst way of doing this ever... but that's the way the big G says we have to do it :( */
	var s = '';
	s += '<div style="width:410px; margin:2px; padding:2px; color:#222;font-size:9pt">';
	s += '<a href="'+google_info.feedback_url+'" style="color:#000; font-weight:bold; font-size:10pt">Ads by Google</a>';
	s += '<br />';

	for (var i = 0; i < google_ads.length; i++)
	{
		s += '<br />';
		s += '<a href="' + google_ads[i].url + '" style="color:#f97600; text-decoration: underline" onmouseout="window.status=\'\';return true;" onmouseover="window.status=\'Go to ' + google_ads[i].visible_url + '\';return true;">' + google_ads[i].line1 + '</a>';
		s += '<br />' + google_ads[i].line2 + ' ' + google_ads[i].line3 + '<br />';
		s += '<a href="' + google_ads[i].url + '" style="color:#aaa; text-decoration: none;" onmouseout="window.status=\'\';return true;" onmouseover="window.status=\'Go to ' + google_ads[i].visible_url + '\';return true;">' + google_ads[i].visible_url + '</a>';
		s += '<br />';
	}

	s += '</div>';

	var d = document.getElementById("afc");
	
	if (d)
	{
		d.innerHTML = s;
	}
	
	return;	
};