function start"(){
sjs.open("target",500,400);
//Ball Object and Properties
var ball = new sjs.image("images/planet.png");
ball.type = "ball";
ball.setsize(20,20);
ball.center();
ball.friction = 0;
ball.bounce();
ball.pushright(3);
ball.pushup(4);
alert("my game! coming SOON!");
} // end start
pong