 function changeBgColor(td, color) 
 {
       if (document.getElementById){
		document.getElementById(td).style.backgroundColor = color;}
}

function confirm_delete1()
{
  if (confirm("Weet je zeker dat je dit Item wilt verwijderen")==true)
    return true;
  else
    return false;
}


