// JavaScript Document
function doSubmit(id){
	if(confirm("Are you sure?")){
		document.location="cart.html?del=1&prid="+id;
	}
}