function popupCopyright(el){
  
  text = '<p>Tenzij anders aangegeven zijn alle gebruikte media op deze website auteursrechtelijk beschermd. Enkel met schriftelijke toestemming van de maker is gebruik elders toegestaan.</p><h2>&copy; All rights reserved</h2><p>Unless otherwise indicated are all media on this website copyrighted by the artist, whose written permission is required for any usage.</p>'
  
  c = '\<div class="dialog_content">\ ' + text + '\</div>\ '
  
  $(el).jDialog({
    title : '&copy; Alle rechten voorbehouden',
    content : c,
    width : 300
  });
  return false;
}

function popup(el, width, title, text){
  
  c = '\<div class="dialog_content"><p>\ ' + text + '\</p></div>\ '
  
  $(el).jDialog({
    title : title,
    content : c,
    width : width
  });
  return false;
}

function popupNoTitle(el, width, text){
  
  c = '\<div class="dialog_content">\ ' + text + '\</div>\ '
  
  $(el).jDialog({
    title : '',
    content : c,
    width : width
  });
  return false;
}

