function confirmation(){

  var answer=confirm("RETURN TO HOME PAGE?")

  if (answer){

  // Output when OK is clicked

      //alert ("RETURN TO HOME PAGE")
	window.returnValue=true;
	window.location="index.php";
    }

  /*else{

	alert ("CANCEL RETURN TO HOME PAGE");
	window.location="cart.php";
  }*/

}
