function leaveSite(link)	{
	var answer = confirm("You have clicked on a link that will take you to another site. Please bear in mind that you will need to return to this site to purchase items already in your cart. These items will remain in your cart for 2 days.")
		if (answer){
		window.location = link;
		}
		else{
		
		}		
}
