function confirmation()
{
	var answer = confirm("We must have a form of ID such as a Driver's License, " +
	 "Social Insurance Number (Canadian residents), " +
	 "Social Security Number (U.S. residents), " +
	 "or Passport Number in order to activate your card as a debit card. " +
	 "Would you like to go to your profile page to enter this information?")
	if (answer)
		window.location = "http://www.trucash.com/Cash/provide_information.asp";
	else
		alert("We apologize, but we cannot activate your card as a debit card without the required information.")
}

