var gsAdProtocol = location.protocol;
var gsAdAcct = 'ca-pub-3231575286924782';
var gsAds = new Array();
gsAds[0] = 'Banner_728x115';
gsAds[1] = 'Square_205x205';
var gsAdsOK = false;

if( gsAdProtocol == 'http:' )
{
	GS_googleAddAdSenseService(gsAdAcct);
	GS_googleEnableAllServices();
	gsAdsOK = true;
}
function gsFetchAds(inCustID, inDest, inReg, inArea)
{
	if( gsAdsOK )
	{

		GA_googleAddAttr("Cust_ID", inCustID);
		GA_googleAddAttr("Dest", inDest);
		GA_googleAddAttr("Region", inReg);
		GA_googleAddAttr("Area", inArea);
		
		for( i = 0; i < gsAds.length; i++ )
		{
			if(gsAdTestOrProd == 'PROD')
			{
				GA_googleAddSlot(gsAdAcct, gsAds[i]);
			}
			else
			{
				GA_googleAddSlot(gsAdAcct, "DEV_" + gsAds[i]);
			}
		}
		
		GA_googleFetchAds();
	}
}
function gsAdFillSlot(adNum)
{
	if( gsAdsOK && adNum < gsAds.length )
	{
		if( gsAdTestOrProd == 'PROD' )
		{
			GA_googleFillSlot(gsAds[adNum]);
		}
		else
		{
			GA_googleFillSlot('DEV_' + gsAds[adNum]);
		}
	}
}

