function muziekSpeler(url)
{
	var features = 'directories=no,height=100,width=100,location=no,menubar=no,resizable=no,scrollbars=no,status=no,titlebar=no';
	window.open(url,'_blank',features);	
}

function popImage_src(src)
{
	var url = '/includes/photo/enlarge.php?foto='+src;
	var features = 'directories=no,height=100,width=100,location=no,menubar=no,resizable=no,scrollbars=no,status=no,titlebar=no';
	window.open(url,'_blank',features);
}

function popImage(id)
{
	var img = document.getElementById(id);
	var arr = img.src.split('/');
	var photo = '/upload/'+arr[arr.length-1];
	popImage_src(photo);
//	var url = 'includes/photo/enlarge.php?foto='+photo;
//	var features = 'directories=no,height=100,width=100,location=no,menubar=no,resizable=no,scrollbars=no,status=no,titlebar=no';
//	window.open(url,'_blank',features);
}

function selectImage(src,id)
{
	var img = document.getElementById(id);
	img.src=src;
	img.focus();
}

function verkrijgElement(id)
{
 if (document.getElementById)
 {
     var elmt = document.getElementById(id);
   } else if (document.all) {
     var elmt = document.all[id];
   }
   return elmt; 
}
 
function toggle(id)
{
 var elmt=new verkrijgElement(id);
 if ( elmt.style.display == "none")
 {
  elmt.style.display = "block";
 } else {
  elmt.style.display = "none";
 }
}
 
function show(id)
{
	var elmt=new verkrijgElement(id);
	elmt.style.display = "block";
}
 
function hide(id)
{
	var elmt=new verkrijgElement(id);
	elmt.style.display = "none";
}
