function google_ad_request_done(google_ads) {
	var s = '';
var i;
if (google_ads.length == 0) {
	s='';
    document.write(s);
    return;
}
if (google_ads[0].type == "flash") {
   s += 
'<div style="text-align:center;"><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>';
s += '</div>';
} else if (google_ads[0].type == "image") {
   
   s += '<div style="text-align:center;"><a href="' +
google_ads[0].url + '" target="_blank" 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>';
s += '</div>';
} else if (google_ads[0].type == "html") {
s += google_ads[0].snippet;
} else {
if (google_ads.length == 1) {
	
s += '<a href=\"' +
google_info.feedback_url + '\"; style="text-decoration:none";><span class="googletext">Ads by Google</span></a><br />';
   s += '<div style="text-align:left;">'
   s += '<div class="even">';
   s += ' <a href="' +
google_ads[0].url + '" target="_blank" onmouseout="window.status=\'\'" onmouseover="window.status=\'go to ' +
google_ads[0].visible_url + '\';return true"; style="text-decoration:none";> <span class="wms_title">' +
google_ads[0].line1 + '</span></a><br /> <span class="wms_text">' +
google_ads[0].line2 + '&nbsp;' +
google_ads[0].line3 + '</span> <a href="' +
google_ads[0].url + '" onmouseout="window.status=\'\'" onmouseover="window.status=\'go to ' +
google_ads[0].visible_url + '\';return true"; style="text-decoration:none";><span class="wms_link">' +
google_ads[0].visible_url + '</span></a></div><br>';
s += '';
s += '</div>';
} else if (google_ads.length > 1) {

s += '<a style="text-decoration:none; color:033567;" href=\"' + google_info.feedback_url + '\"><div class="sponsor_name"><span class="contenido"><span class="contenido"><font size="2">Ads By Google<br /><br /></font></span></span></div></a><dl class="list">';
for(i = 0; i < google_ads.length; ++i) {

   	s += '<dt><a href="' + google_ads[i].url + '" onmouseout="window.status=\'\'" onmouseover="window.status=\'go to ' + google_ads[i].visible_url + '\';return true" target="_blank">' + google_ads[i].line1 + '</a></dt>';
	s += '<dd>';
	s +=  google_ads[i].line2 + '&nbsp;' + google_ads[i].line3 ;
	s += '	<a href="' + google_ads[i].url + '" onmouseout="window.status=\'\'" onmouseover="window.status=\'go to ' + google_ads[i].visible_url + '\';return true" target="_blank">' + google_ads[i].visible_url + '</a>';
	s += '</dd>';
}
	s += '</dl>';

}
    }
    document.write(s);
    return;
  }