
// Copyright (c) 2002 Hiljo Lodewijk
// All Rights Reserved.
//
// Part of Page design Javascript library
//
// $Id: main.js 1.8 2008-01-25 $


var files = Array(
	'http://static.easysporten.nl/js/common.js',
	'http://static.easysporten.nl/js/input.js',
	'http://static.easysporten.nl/js/jspopup.js',
	'http://static.easysporten.nl/js/test.js'

);

if ( document.getElementsByTagName && document.createElement ) {
  var head = document.getElementsByTagName( 'head' )[0];
  for ( i = 0; i < files.length; i++ ) {
    var script = document.createElement( 'script' );
    script.setAttribute( 'type', 'text/javascript' );
    script.setAttribute( 'src', files[i] );
    head.appendChild( script );
  }
}