﻿function setAdVariables(adPosition, container) {
	//based on screen size, we need to pick the correct ads for the top and right ad spaces.  the bottom ad space
	//is the same regardless of screen size.
	google_ad_client = "pub-3485380067080110";
	var docWidth = document.documentElement.clientWidth;
	if (docWidth > 1015) {
		//put in the banner at the top
		//put the two ads on the right to 250x250
		if (adPosition == "top") {
			google_ad_slot = "3829032668";
			google_ad_width = 468;
			google_ad_height = 60;
		} else if (adPosition == "topRight") {
			google_ad_slot = "4556938197";
			google_ad_width = 200;
			google_ad_height = 200;
//			google_ad_slot = "4478702967";
//			google_ad_width = 250;
//			google_ad_height = 250;
		} else if (adPosition == "bottomRight") {
			google_ad_slot = "4556938197";
			google_ad_width = 200;
			google_ad_height = 200;
//			google_ad_slot = "4478702967";
//			google_ad_width = 250;
//			google_ad_height = 250;
		} else if (adPosition == "bottom") {
			google_ad_slot = "7848885655";
			google_ad_width = 468;
			google_ad_height = 60;
		}
	}
	else {
		if (adPosition == "top") {
			google_ad_slot = "3829032668";
			google_ad_width = 0;
			google_ad_height = 0;
		} else if (adPosition == "topRight") {
			google_ad_slot = "4556938197";
			google_ad_width = 200;
			google_ad_height = 200;
		} else if (adPosition == "bottomRight") {
			google_ad_slot = "4556938197";
			google_ad_width = 200;
			google_ad_height = 200;
		} else if (adPosition == "bottom") {
			google_ad_slot = "7848885655";
			google_ad_width = 468;
			google_ad_height = 60;
		}
	}
}