/* Nostradamus.org */

var bannerCount = 0;
var bannerChannels = [ "5793191851", "9709975432", "1880861778", "1256712655", "5169176564", "2669662147" ];

function gen(adType)
{
	google_ad_client = "pub-0032409" + "991" + "927847";
	google_color_border = "CC99CC";
	google_color_bg = "E7C6E8";
	google_color_link = "000000";
	google_color_url = "00008B";
	google_color_text = "663366";
	
	if (adType == "leader")
	{
		google_ad_width = 728;
		google_ad_height = 90;
		google_ad_format = "728x90_as";
		google_ad_type = "text_image";
		google_ad_channel ="7871940403";
	}
	else if (adType == "banner")
	{
		google_ad_width = 468;
		google_ad_height = 60;
		google_ad_format = "468x60_as";
		google_ad_type = "text_image";
		google_ad_channel = bannerChannels[bannerCount % bannerChannels.length];
//		document.write("<p>Banner = " + bannerCount + " -- " + google_ad_channel + "</p>");
		bannerCount++;
	}
	else if (adType == "inlinebanner")
	{
		google_ad_width = 234;
		google_ad_height = 60;
		google_ad_format = "234x60_as";
		google_ad_type = "text_image";
		google_ad_channel ="5835421693";
	}
	else if (adType == "side")
	{
		google_ad_width = 120;
		google_ad_height = 600;
		google_ad_format = "120x600_as";
		google_ad_type = "text_image";
		google_ad_channel = "2861219638";
	}
	else
		return;

	document.write('<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script>');
}

