
google_ad_client = 'ca-nd-theaustralian_js';
google_ad_channel = 'other';
google_ad_output = 'js';
google_max_num_ads = '3';
google_ad_type = 'text';
google_language = 'en';
google_encoding = 'utf8';
google_safe = 'high';


function google_ad_request_done(google_ads) {
    var s = '';
    var i;
	
    
    if (google_ads.length == 0) {
        return;
    }
	
	if (google_ads.length >= 1) {
	    s += 	'<div class="module ad google">' +
					'<div class="module-header">' +
						'<h2 class="module-heading">Ads By Google</h2>' +
					'</div>' +
					'<div class="module-content">' +
						'<ul>'
				            
				            for(i=0; i < google_ads.length; ++i) {
				                s += '<li><a href="' + google_ads[i].url + '" ' +
				                'onmouseout="window.status=\'\'" ' +
				                'onmouseover="window.status=\'go to ' +
				                google_ads[i].visible_url + '\'">' +
				                '<strong>' + google_ads[i].line1 + '</strong>' +
				                google_ads[i].line2 + ' ' +
				                google_ads[i].line3 +
				                '<span>' + google_ads[i].visible_url + '</span>' +
								'</a></li>';
						}
			            s += '</ul>' +
						'</div>' +
					'</div>';
        }
		
    document.write(s);
    return;
}




