function checkDomain () {
	
	message = "I'M AN ADVISER\nYou are leaving the Consumer approved site and entering the Adviser only site. This site is for finance professionals and is not approved for use by the general public. By continuing, you confirm you are a financial services professional.";
	
	var answer = confirm(message);
	
	if ( answer ) {
		window.location = "http://www.advisersunited.com"
	}
	
}

