// JavaScript Document
// minder comementaar
function openGameWindow(gameId) { 
  url='http://www.pienterepeuter.nl/pls/portal/url/PAGE/BSM_CONTAINER_PAGES/samenslim?p_tak_id=';
  if (gameId=='1'){
    url+='3003';	
  }
  else if(gameId=='2'){
    url+='3105';
  }
  else if(gameId=='3'){
    url+='3016';
  }
  else if(gameId=='4'){
    url+='3110';
  }
  else if(gameId=='5'){
    url+='3100';
  }
  else if(gameId=='6'){
    url+='3031';
  }
newWindow=window.open(url, 'movieWin', 'height=700,width=1000,toolbar=no,scrollbars=no');

}

