function redirectUser(name) {
	var redirect;
	
	switch (name) {
		case "index":
			redirect = "http://go.microsoft.com/fwlink/?LinkID=126917&clcid=0x409";
			break;
		case "mpan":
			redirect = "http://go.microsoft.com/fwlink/?LinkID=126917&clcid=0x409";
			break;

	}
	
	setTimeout("window.location = '" + redirect + "';", 2000);
}