function buildArray()
{
        var a = buildArray.arguments;
        for (i=0; i<a.length; i++)
        {
                this[i] = a[i];
        }
        this.length = a.length;
}


var urls1 = new buildArray("",
"../../cheatsheets/online_metrics.html",
"../../cheatsheets/facts_figures.html",
"../../cheatsheets/social_media.html",
"../../cheatsheets/consumer_trends.html",
"../../cheatsheets/mobile_marketing.html"
);


function go (which, num, win)
{
	n = which.selectedIndex;
	if (n != 0)
	{
		var url = eval("urls" + num + "[n]")
		if (win)
		{
			openWindow(url);
		} else
		{
			location.href = url;
		}
	}
}

