function clicker(data, string2){
	var thediv=document.getElementById('displaybox');
	if(thediv.style.display == "none"){
		thediv.style.display = "";
		thediv.innerHTML = "<table width='100%' height='100%'><tr><td align='center' valign='middle' width='100%' height='100%'><div style='background-color:#FFFFFF; width: 50%; border: 2px solid #828282; -moz-border-radius: 10px; -webkit-border-radius: 10px; z-index:1002;'><br><h2 class='comp'>" +data+ "<\/h2><br>" + string2 + "<br><\/div><a href='#' onclick='return clicker();' style='color:red; font-weight:bold;'>Sluit dit venster<\/a><\/td><\/tr><\/table>";
		//thediv.innerHTML = "<div width='100%' height='100%' align='center' valign='middle'><div style='background-color:#FFFFFF; width:600px;'><br><h2 class='comp'>" +data+ "<\/h2><br>" + string2 + "<br><\/div><a href='#' onclick='return clicker();'><b style='color:red;'>Sluit dit venster<\/b><\/a><\/div>";
	}else{
		//standard java execution
		//thediv.style.display = "none";
		//thediv.innerHTML = '';
		
		//jquery execution
		$('#displaybox').fadeOut(200);
                $('#slider').show(200);
	}
	return false;
}

function popup(mylink, windowname, breedte, hoogte) {
	var loc = mylink;
	var b = breedte;
	var h = hoogte;
	var params = 'toolbar=no,scrollbars=no,location=no,status=no,menubar=no,resizable=yes,width='+b+',height='+h;
	
	foto = window.open("","foto",params);
	foto.document.write("<html><head><title>"+ windowname +"</title></head>");
	foto.document.write("<body>");
	foto.document.write("<a href='javascript:window.close();' title='[ Klik om te sluiten ]'><img src=\""+loc+"\" alt='' border='0' width='" +b+ "' height='" +h+ "'></a>");
	foto.document.write("</body></html>");
	foto.document.close();
}
