function EditItem(inv_id)
{
	window.location.href = 'index.php?view=modify&invId=' + inv_id;
	
}

function deleteItem(inv_id)
{
	if (confirm('Are you sure that you want to delete this Inventory Item with their all contents?')) {
		window.location.href = 'processBroker.php?action=deleteItem&invId=' + inv_id;
	}
}


function EditSpecial(spe_id)
{
	window.location.href = 'index.php?view=modifySpecial&speId=' + spe_id;
	
}

function deleteSpecial(spe_id)
{
	if (confirm('Are you sure that you want to delete this Special Item with their all contents?')) {
		window.location.href = 'processBroker.php?action=deleteSpecial&speId=' + spe_id;
	}
}