var confirmationTxt = "Please be aware that you are about to leave Disney Online and different terms of use and privacy policy will apply";

function partnersLinkOut(url)
{	
	var press=confirm(confirmationTxt);
	if (press==true)
  	{
  		window.open (url,"mywindow");
	}
}
