// JavaScript Document
// Called by /SiteResources/flashfiles/landing_banner.swf
// re-locates browser location to listed url

function flashBannerClick(numVal) {
	//alert(numVal);
	try {
		switch(numVal) {
			case 1: // Home
	//window.location.assign('');
	//break;
	return false;
case 2: // Academic programmes
	window.location.assign('/default.aspx?pid=89&stepid=1&oid=107');
	break;
case 3: // iGIBS
	window.location.assign('/igibs/about-igibs.aspx');
	break;
case 4: // CSP
	window.location.assign('/default.aspx?pid=102&stepid=1&oid=120');
	break;
case 5: // Centre for Leadership and Dialogue
	window.location.assign('/default.aspx?pid=289&stepid=1&oid=307');
	break;
case 6: // Forums & Conferences
	window.location.assign('/default.aspx?pid=280&stepid=1&oid=298');
	break; 
case 7: // Digital GIBS
	window.location.assign('/default.aspx?pid=1012&stepid=1&oid=385511');
	break; 
case 8: // Executive programmes
	window.location.assign('/default.aspx?pid=54&stepid=1&oid=72');
	break;
			default:
				return false;
		}
	} catch(e) {
		return false;
	}
}
	






