﻿function googleAdsense(keywords, language, container, format, isPlus18) {
	google.load('ads.search', '1');
	google.setOnLoadCallback(init);
	var channel = 0;
	var number = 4;
	if (format == 'narrow') {
		if (language == 'fr')
			channel = 7062992264;
		else
			channel = 5090751474;
		number = 8;
	}
	else { // type == 'wide'
		if (language == 'fr')
			channel = 2236024023;
		else
			channel = 5863349574;
		number = 4;
	}
	var adsafe = (isPlus18 == 'true') ? 'low' : 'high';
	function init() {
		var options1 = {
			'pubId': 'pub-1317487945817688',
			'channel': channel,
			'query': keywords,
			'container': container,
			'format': format,
			'hl': language,
			'number': number,
			'colorText': '',
			'colorTitleLink': '#4d5f0d',
			'colorDomainLink': '',
			'colorBackground': '#fff',
			'colorBorder': '#f0f8e0',
			'adsafe': adsafe
		};
		var dynamicAd = new google.ads.search.Ad(options1);
	}
}