function google_ad_request_done(google_ads) {  

var second_ad_unit = '';

    /* Verify that there are actually ads to display.*/
	if (google_ads.length == 0) {
    return;
	}

	/*
	* If an image or flash ad is returned, display that ad.
	* Otherwise, build a string containing all of the ads and
	* then use a document.write() command to print that string.
	*/
	
	if (google_ads[0].type == "flash") {

		second_ad_unit += '<ul><li class="abgtext_space"><a class="abg" href=\"' +
		google_info.feedback_url + '\">Ads by Google</a></li>' +
		'<li class="adtext_space"><object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"' +
		' codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" WIDTH="' +
		google_ad.image_width + '" HEIGHT="' +
		google_ad.image_height + '"> <PARAM NAME="movie" VALUE="' +
		google_ad.image_url + '">' +
		'<PARAM NAME="quality" VALUE="high">' +
		'<PARAM NAME="AllowScriptAccess" VALUE="never">' +
		'<EMBED src="' +
		google_ad.image_url + '" WIDTH="' +
		google_ad.image_width + '" HEIGHT="' +
		google_ad.image_height +
		'" TYPE="application/x-shockwave-flash"' +
		' AllowScriptAccess="never" ' +
		' PLUGINSPAGE="http://www.macromedia.com/go/getflashplayer"></EMBED></OBJECT></li></ul>';

	} else if (google_ads[0].type == "image") {

		second_ad_unit += '<ul><li class="abgtext_space"><a class="abg" href=\"' +
		google_info.feedback_url + '\"\">Ads by Google</a></li><li class="adtext_space"><a href="' +
		google_ads[0].url + '" target="_top" title="go to ' +
		google_ads[0].visible_url + '" onmouseout="window.status=\'\'" onmouseover="window.status=\'go to ' +
		google_ads[0].visible_url + '\';return true"><img border="0" src="' +
		google_ads[0].image_url + '"width="' +
		google_ads[0].image_width + '"height="' +
		google_ads[0].image_height + '"></a></li></ul>';

	} else if (google_ads[0].type == "html") {

		second_ad_unit += google_ads[0].snippet;

	} else {

	if (google_ads.length == 1)	{

		second_ad_unit += '<ul><li class="abgtext_space1"><a class="abg" href=\"' + 
		google_info.feedback_url + '\">Ads by Google</a></li><li><a href="' +
		google_ads[0].url + '" onmouseout="window.status=\'\'" onmouseover="window.status=\'go to ' +
		google_ads[0].visible_url + '\';return true;" class="adTitle1">' +
		google_ads[0].line1 + '</span></a><div class="adText1">' +
		google_ads[0].line2 + 
		google_ads[0].line3 + '</div><a href="' +
		google_ads[0].url + '" onmouseout="window.status=\'\'" onmouseover="window.status=\'go to ' +
		google_ads[0].visible_url + '\';return true;">' +
		google_ads[0].visible_url + '</span></a></li></ul>';

	} else if (google_ads.length > 1) {
		
		second_ad_unit += '<ul><li class="abgtext_space"><a class="abg" href=\"' + 
		google_info.feedback_url + '\">Ads by Google</a></li>';
	
	for(i = 0; i < google_ads.length; ++i) {

		second_ad_unit += '<li class="adtext_space"><a href="' +
		google_ads[i].url + '" onmouseout="window.status=\'\'" onmouseover="window.status=\'go to ' + 
		google_ads[i].visible_url + '\';return true;" class="adTitle">' +
		google_ads[i].line1 + '</a><div class="adText">' + 
		google_ads[i].line2 + '&nbsp;' +  
		google_ads[i].line3 + '</div><a href="' +
		google_ads[i].url + '" onmouseout="window.status=\'\'" onmouseover="window.status=\'go to ' +
		google_ads[i].visible_url + '\';return true;">' + 
		google_ads[i].visible_url + '</span></a></li>';

		}
		second_ad_unit += '</ul>';
	}
	}

	document.getElementById("second_ad_unit").innerHTML += second_ad_unit;
	return;
}


google_ad_client = "pub-4532355179464318";
google_ad_channel = '1611576389';
google_ad_output = 'js';
google_max_num_ads = '3';
google_feedback = "on";
google_ad_type  = "text";
google_skip = 0;
google_adtest = "off";
google_image_size = "300x250";
google_language = "en";


document.write("<div id='second_ad_unit'></div>");

document.write("<script type='text/javascript' src='http://pagead2.googlesyndication.com/pagead/show_ads.js'></script>");


