// JavaScript Functions

//confirms deletes
function confirmDelete(delUrl) {
  if (confirm("Are you sure you want to remove this swimsuit from your cart?")) {
    document.location = delUrl;
  }
}

//shows sizing div
var sizing = function() {
	if(document.getElementById("sizing").style.display=="block") {
		document.getElementById("sizing").style.display="none";	
	} else {
		document.getElementById("sizing").style.display="block";	
	}
}