function showImage(img){

 newWindow("/pages/image/?"+img,600,400,'image','toolbar=no,status=no,resizable=no,scrollbars=no');
}

function newWindow(url,width,height,name,props){
  if(!props){
  	var properties = "width="+width+",height="+height+",toolbar=no,status=no,resizable=yes,scrollbars=yes";
 }else{
   var properties = "width="+width+",height="+height+","+props;
 }
  	var screenY = window.screen.availHeight;
  	var screenX = window.screen.availWidth;
  	var leftvar = Math.round((screenX - width) / 2);
  	var rightvar = Math.round((screenY - height) / 2);
  	properties += ",left=" + leftvar +",top=" + rightvar;
 
	popupHandle = window.open(url,name, properties);
	setTimeout('popupHandle.focus();',250);
}
//-----------------

function goSearch(page) {
	var theform = document.playlist;
	    theform.page.value = page;
		theform.submit();
  }
//-----------------
function cnfrm(url) {
	if (confirm("Weet je zeker dat je dit item wilt verwijderen \n\nDeze actie kan niet ongedaan gemaakt worden.")) {
		location.href=(url);
	}
}