// JavaScript LOG IN Document for Spotty's House - by Woo Hoo Designs 2010

function confirmation() {
var answer = confirm("By clicking the OK button you are agreeing that you have read the disclaimer and will now be transferred to complete your payment.");
  if (answer){
 
  window.location = "https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=G5CAF7629KY5Q";
  }
else{
    alert("In order to proceed with your payment, you must agree that you have read the disclaimer.");
	 
  }
}


