/*
 * File: loadsplash.js
 * Include with: <SCRIPT SRC="loadsplash.js"></SCRIPT>
 *
 * Loads the splash screen
 *
 */

var winWidth  = 800;
var winHeight = 500;

var xpos = Math.ceil((screen.availWidth - winWidth) / 2);
var ypos = Math.ceil((screen.availHeight - winHeight) / 2);

window.moveTo(xpos,ypos);     
window.resizeTo(winWidth,winHeight);     

window.name = 'main';
window.open('splash.html', 'main');

