// JavaScript Document

 function init() {
               setTimeout("shake(4)",1000);
               setTimeout("this.focus()",4000);
               }
               function register()
               {
               var isAol = "no";
               var res = 800 ;
               }
               function shake(n) {
               if (self.moveBy) {
               for (i = 10; i > 0; i--) {
               for (j = n; j > 0; j--) {
               self.moveBy(0,i);
               self.moveBy(i,0);
               self.moveBy(0,-i);
               self.moveBy(-i,0);
                     }
                   }
                 }
               }
               a=275;
               b=275;
               r=20;
               x=1;
               z=1;
               function rotate(r) {
               while (z<=3) {
               for (var i = 0; i <360; i++) {
               x = (r * Math.cos((i * Math.PI)/180)) + a;
               y = (r * Math.sin((i * Math.PI)/180)) + b;
               window.moveTo(x,y);
               }
               z+= 1;
               }
               setTimeout("shake(3)",10000);
               } 
