function addItem(itemid,price,units){
	$('additem').value = itemid;
	$('price').value = price;
	$('units').value = units;
	$('cart').submit();
}

function updateCart(itemid,qty,price,units){
	$('updateitem').value = itemid;
	$('qty').value = qty;
	$('price').value = price;
	$('units').value = units;
	$('cart').submit();
}

function submitCHECKOUT() {
	document.CHECKOUT.submit();
}

function submitShipping() {
	var missing = false;
	if(document.getElementById('P1')) {
		if($('P1').value == '') {
			$('p1label').style.color = 'red';
			missing = true;
		} else $('p1label').style.color = 'black';
	}
	if($('NAME').value == '') {
		$('namelabel').style.color = 'red';
		missing = true;
	} else $('namelabel').style.color = 'black';
	if($('ADDRESS').value == '') {
		$('addresslabel').style.color = 'red';
		missing = true;
	} else $('addresslabel').style.color = 'black';
	if($('CITY').value == '') {
		$('citylabel').style.color = 'red';
		missing = true;
	} else $('citylabel').style.color = 'black';
	if(document.getElementById('STATE')) {
		if($('STATE').value == '') {
			$('statelabel').style.color = 'red';
			missing = true;
		} else $('statelabel').style.color = 'black';
	}
	if($('ZIP').value == '') {
		$('ziplabel').style.color = 'red';
		missing = true;
	} else $('ziplabel').style.color = 'black';
	if($('PHONE').value == '') {
		$('phonelabel').style.color = 'red';
		missing = true;
	} else $('phonelabel').style.color = 'black';
	if($('EMAIL').value == '') {
		$('emaillabel').style.color = 'red';
		missing = true;
	} else $('emaillabel').style.color = 'black';

	if(missing) $('ERRORMSG').style.visibility = 'visible';
	else document.SHIPPING.submit();
}

function resetCart() {
	document.cookie="BASKET=''; expires=Thu, 20 Jul 1969 00:00:01 GMT; path=/";
	document.cookie="ORDERID=''; expires=Thu, 20 Jul 1969 00:00:01 GMT; path=/";
	document.cookie="SEMORDERID=''; expires=Thu, 20 Jul 1969 00:00:01 GMT; path=/";
	document.cookie="LASTORDER=''; expires=Thu, 20 Jul 1969 00:00:01 GMT; path=/";
}

function highLight(obj){
	obj.select();
}

function printOrderForm(orderId) {
	window.open('../store/print_receipt.php?ORDERID='+orderId,'printOrder','width=600,height=500,scrollbars=yes');
	resetCart();
}
