function DeleteAll()
{
	if (confirm('Are you sure you wish to delete listed orders?'))
	{
		document.forms[0].FormStatus.value = 'DeleteAll';
		document.forms[0].submit();
	}
}

function updateMe(Val, Val2)
{
	document.forms[0].FormStatus.value = 'UpdateQty';
	document.forms[0].whichID.value = Val;
	document.forms[0].whichOrderID.value = Val2;
	document.forms[0].submit();
}

function updateShip(Val)
{
	shipVal = eval("document.forms[0].shipping_"+Val+".value");
	document.forms[0].whichOrderID.value = Val;
	document.forms[0].upShip.value  	 = shipVal;
	document.forms[0].FormStatus.value	 = 'updateShip';
	document.forms[0].submit();
}

function DeleteMe(Val)
{
	document.forms[0].FormStatus.value = 'DeleteSingle';
	document.forms[0].whichOrderID.value = Val;
	document.forms[0].submit();
}
