
<!--begin
var popup;
var height=200;
var width=300;
var left=(screen.width/2)-(300/2);
var top=(screen.height/2)-(200/2);
var startleft=0;
var starttop=top;
var speed=30;
setTimeout("entrypop('subscribe2.html');",3000);
var popup;
function entrypop(filename){
popup = window.open(filename, "","height="+height+",width="+width+",top="+starttop+",left="+startleft+",location=no,menubar=no,resizable=yes,scrollbars=yes,status=no,titlebar=no,toolbar=no,directories=no");
move();
}
function move(){
popup.moveBy(speed,0);
startleft+=speed;
if(startleft<left){
 setTimeout("move(popup);",500/speed);
}
else{
popup.moveTo(left,top);
}
}
function handleError(msg, url, ln) {
   return true;
}
window.onerror = handleError;
// end -->



