// JavaScript Document
	function google_ad_request_done(google_ads) {
		var s;
		
		if (google_ads.length == 0) {
			return;
		}
		
		s = '<a class="ad_attribution" href="'+google_info.feedback_url+'"><img src="http://ocio.diariovasco.com/_images/_design/titulos/anuncios_google.gif" alt="Anuncios Google" width="166" height="24" border="0"/></a><br>';

		if (google_ads.length == 1) {
			ad_title_class = 'ad_title_large';
			ad_text_class = 'ad_text_large';
			ad_url_class = 'ad_url_large';
		} else {
			ad_title_class = 'ad_title';
			ad_text_class = 'ad_text';
			ad_url_class = 'ad_url';
		}

		for (var i=0; i < google_ads.length; i++) {
			s += '<p><span class="tx_gris_dest"><a class="' + ad_title_class + '" href="'	+ google_ads[i].url + '" >' +	google_ads[i].line1 + '</a></span><br />' +
				'<span class="' +	ad_text_class + '">' +
				google_ads[i].line2 + ' ' +
				google_ads[i].line3 + '</span><br>' +
				'<a class="' + ad_url_class + '" href="' +
				google_ads[i].url + '" >' +
				google_ads[i].visible_url + '</a></p>';
		}

		document.write(s);
		return;
	}

	google_ad_client = 'pub-6870106950559941';
	google_ad_channel = '4739597525';
	google_ad_output = 'js';
	google_max_num_ads = '3';
	google_safe = 'high';
	google_feedback = 'on';
	google_adtest = 'on';
 
