<!-- Begin
// change this
var Message="A complete personal web page - James.com.np";
var place=1;
function pxd(pos){ 
  eval("parent.location='?pos="+pos+"'");
}
function scrollIn() {
window.status=Message.substring(0, place);
if (place >= Message.length) {
place=1;
window.setTimeout("scrollOut()",100); 
} else {
place++;
window.setTimeout("scrollIn()",120); 
   } 
}
function scrollOut() {
window.status=Message.substring(place, Message.length);
if (place >= Message.length) {
place=1;
window.setTimeout("scrollIn()", 100);
} else {
place++;
window.setTimeout("scrollOut()", 100);
   }
}
scrollIn()
// End -->
