function changeSection()
{
  section = document.getElementById('section_id').value;
  
  if(section != 0)
  {
    window.location='http://www.eburoon.be/assortiment/'+section+'';
  }
  else
  {
    window.location='http://www.eburoon.be/assortiment';
  }
}

function changeAssort()
{
  assort = document.getElementById('assort_item_id').value;
  
  window.location='http://www.eburoon.be/assortiment/'+assort+'';
}

function changeDelPhotoAlbum(id)
{
  window.location='http://cms.eburoon.be/index.php?button=sfeer&act=del_pic&a='+id+'';
}

function confirmDeletePhoto(pid,aid) 
{
	var answer = confirm("Bent u zeker dat u deze foto wilt verwijderen?")
	if (answer)
	{
		window.location.href='http://cms.eburoon.be/del_photo_item.php?p='+pid+'&a='+aid;
	}
}

