//the functions below help us open windows real quick
var DefaultWindowOptions = 'status=no,scrollbars=yes,resizable=yes,width=700,height=400';

//-----------------------------------------------------------------//
	
//front end
	function OpenConsumerAlert() {
		window.open('/consumer_alert.aspx', 'ConsumerAlert', DefaultWindowOptions);
	}
	function OpenWhyGetStarted() {
		window.open('/get_started_now.aspx', 'WhyGetStared', DefaultWindowOptions);
	}
	function OpenForgotPassword() {
		window.open('/login.aspx?r=forgot_password', 'ForgotPassword', DefaultWindowOptions);
	}
	function OpenExternalLink(url) {
		window.open(url);
	}
//end front end


//-----------------------------------------------------------------//
