// JavaScript Document

function checkcleardown() {
	
	// Checks if the user wants to empty the cart before submission
	
	if (confirm("Are you sure you want to clear your shopping basket?")) {
		return true;
	} else {
		return false;
	}
}

function removeline(qty) {
	
	// Checks if the user wants to remove the item/s from the cart before submission
	
	var text = "this";
	var qual = "item";
	

	if (qty > 1) { 
		text 	= "these"; 
		qual	= "items";
	}
	
	if (confirm("Are you sure you want to remove "+text+" "+qual+" from your basket?")) {
		return true;
	} else {
		return false;
	}
}
