function checkquatity(){
	myQuanRef = document.getElementById("quantity");
	if(myQuanRef.value == ""){
		myQuanRef.value = 1;
	}
}
function checkquatity2(myId){
	myQuanRef = document.getElementById(myId);
	if(myQuanRef.value == ""){
		myQuanRef.value = 1;
	}
}
