// jscript by gerald

//test if the page is framed and if it is, get out of the frame
if (top.location!=this.location){top.location="index.htm";}

//sets the variables that are to be used
var sW2 = screen.width/2;
var sH2 = screen.height/2;
var mW = 800;
var mH = 600;
var mAlert ="to be uploaded. for more information, check the boards along edsawalk.";

//resizes the page during loading...
self.resizeTo(mW,mH);

//centers everything
self.moveTo(sW2-(mW/2), sH2-(mH/2));

