function DoPost(ID,Action)
	{
	var antwoord = "true";
	if(Action != "edit")
		{
			antwoord = confirm("Weet je zeker dat je een " + Action + " wil uitvoeren?"); 
		}


	if(antwoord)
		{

			 this.editItem.actie.value = Action;
			 this.editItem.ItemID.value =ID;
 	 		 xmlhttpPost("gb.php");
		}
	}
	

