// Shoe Select Javascript

var sizeWarning = false;


function warnAboutSize() {
	
	if (!sizeWarning) {
		alert("We strongly recommend you consult the size chart before proceeding");
		sizeWarning = true;
		return false;
	}
	return true;
}

function customize(shoeId) {
	
	//var size=0;
	//var form = document.getElementById("shoeSubmit"+shoeId);
	//var selector = document.getElementById("size"+shoeId);
	//size = selector.options[selector.selectedIndex].value;
	/*if (size == 'none') {
		alert("Please choose a size");
		return false;
	}
	if (warnAboutSize())
		window.location = "design.php?shoe="+shoeId+"&size="+size;
	return false;*/
	window.location = "design.php?shoe="+shoeId;
	
}
