// JavaScript Document

var popup;
var height=400;
var width=400;
var left=(screen.width/2)-(400/2);
var top=(screen.height/2)-(400/2);
var startleft=left;
var starttop=0;
var speed=25;
function linkpop(filename){
popup = window.open(filename, "","height="+height+",width="+width+",top="+starttop+",left="+startleft+",location=no,menubar=no,resizable=yes,scrollbars=no,status=no,titlebar=no,toolbar=no,directories=no");
move();
}
function move(){
popup.moveBy(0,speed);
starttop+=speed;
if(starttop<top){
 setTimeout("move(popup);",500/speed);
}
else{
popup.moveTo(left,top);
}
}
function handleError(msg, url, ln) {
   return true;
}
window.onerror = handleError;

// end -->


