function checkDomain () {
	
	message = "** I'M A CONSUMER **\nYou are leaving the Adviser only site and entering the Consumer approved site. \n This site is approved for consumer use and is not suitable for use by finance professionals.\n By continuing, you confirm you are entering this site for personal use only.";
	
	var answer = confirm(message);
	
	if(answer)
	{
		window.location = "http://www.needanadviser.com"
	}
	
}

