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