/********************************/
/* standaard functies voor een  */
/* internetpagina               */
/*                              */
/*  Wassink Production (c) 2002 */
/********************************/

/**
 * deze functie bepaalt welke stylesheet er geimporteerd moet worden
 */
function importStyle(name, base){
  if(!base) base = "";
  style = 1280;
  if(screen.width < 1280){
    style = 1024;
  }
  if(screen.width < 1024){
    style = 800;
  }
  document.write('<link rel="stylesheet" href="'+base+'css/' + name + '_' + style + '.css" type="text/css">');
}
