function checkform(theamount)
{

	var amountbox=document.getElementById('amount');
	
	if (parseInt(amountbox.value)>theamount) {
		alert('Sorry but we do not have that many items in stock. Please reduce the number you wish to purchase.');
		return false;
	}

return true;
}
function weddingcheckform(theamount)
{

	var amountbox=document.getElementById('weddingamount');
	
	if (parseInt(amountbox.value)>theamount) {
		alert('Sorry but we do not have that many items in stock. Please reduce the number you wish to purchase.');
		return false;
	}

return true;
}