function google_ad_request_done(google_ads) {
		var s = '';
		var i;
		var goog_url ='';
		
		if (google_ads.length == 0) {	return;	}
	
		s = '<div class="box-ads">'; 

		// 'Ads by google'			
		goog_url +='<p class="ads-head"><span>';
		if (google_info.feedback_url) {
				  goog_url += '<a href="' + google_info.feedback_url +  '">Ads by Google</a>';
		} else {  goog_url += 'Ads by Google';}
		goog_url += '</span></p>'
			
		if (google_ads[0].type == "flash") {
			  s +=	'<p class="ads-head ad-image"><span>';
			  if (google_info.feedback_url) {
				  s += '<a href="' + google_info.feedback_url +  '">Ads by Google</a>';
			  } else {  s += 'Ads by Google';} 
			  s += '<span></p>';
			  s += 	'<p class="one-ad"><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>'+
					' </p>';
		} else if (google_ads[0].type == "image") {
			  s +=	'<p class="ads-head ad-image"><span>';
			  if (google_info.feedback_url) {
				  s += '<a href="' + google_info.feedback_url +  '">Ads by Google</a>';
			  } else {  s += 'Ads by Google';} 
			  s += '<span></p>';
			  s += '<p class="one-ad"><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></p>';
		} else if (google_ads[0].type == "html") {
			  s +=	'<p class="ads-head"><span>';
			  if (google_info.feedback_url) {
				  s += '<a href="' + google_info.feedback_url +  '">Ads by Google</a>';
			  } else {  s += 'Ads by Google';} 
			  s += '<span></p>';
			  s += '<p class="one-ad">'+google_ads[0].snippet+'</p>';
			} else {
				if (google_ads.length == 1) {
				   s += goog_url +'<p class="one-ad">'+ 
	 				    '<a class="ad-link" href="' +  google_ads[0].url + '">' +
					    google_ads[0].line1 + "</a> " + ' - ' +
					    google_ads[0].line2 + ' ' + google_ads[0].line3 +  	 
					    ' - '+
					    '<a href="' +  google_ads[0].url + '" class="url">' +										  
					    google_ads[0].visible_url +  '</a>' +
					    '</p>';	
				} else if (google_ads.length > 1) {	
					s += goog_url;
					for(i = 0; i < google_ads.length; ++i) {
						s += '<p>' +
							 '<a  class="ad-link" href="' +  google_ads[i].url + '" >' +
							 google_ads[i].line1 + "</a> " + ' - ' +
							 google_ads[i].line2 + ' ' + google_ads[i].line3 + ' - '+
							 '<a class= "url" href="' +  google_ads[i].url + '" >' +										  
							 google_ads[i].visible_url + '</a>'  +
							 '</p>';	
					} 
			   }
		 }
	try{		
                if (google_ads[0].bidtype == "CPC") {  google_adnum = google_adnum + google_ads.length; }
        }
        catch(e){}
        
	s +='</div>';
	
    document.write(s);
	return;
  } // end func



