// JavaScript Document
function sendorder(){
if(	confirm("Checking Out will empty your basket and transfer the contents to an order. \nIt is not possible to return to your basket once you click this button. \nAre you sure you want to checkout?") )
	{
		return true;
	}
	else
	{
		return false;
	}

return true;
}
function remorder(){
if(	confirm("Are you sure you want to clear your basket?") )
	{
		return true;
	}
	else
	{
		return false;
	}

return true;
}
