function OverrideLauncherLinks() {
	
		$('[href^="/adviser/launcher/"]').each( 
			function(index, item){
				var anchor = $(item);
				var href = anchor.attr("href");
				anchor.unbind ("click");
				anchor.click(
					function() {
						window.open(href, 'Launcher', 'status=yes,resizable=1,toolbar=no,scrollbars=yes,menubar=no,location=no,');
						return false;
					}
				);
			}
		);
	
}