
function getRedirectAuthLink(destination) {
	var returnValue;
	returnValue = $.ajax({
	      url: "/toolbox/tools/stepbystep/stepbystepurl.html?routeurl="+destination,
	      global: false,
	      type: "POST",
		  async: false,
	      dataType: "text"
	   }
	).responseText;
	return returnValue;
}
function launchStepByStepPopup() {
	var redirectUrl ;
	redirectUrl = getRedirectAuthLink("stepbystep.target.destination");
	if (redirectUrl.indexOf('http') > 2) {
		redirectUrl = redirectUrl.substring(redirectUrl.indexOf('http'));
	}
	popPageWithScroll(720,830,redirectUrl,'toolsScroll');
}
