var isNS = (navigator.appName == "Netscape") ? 1 : 0; 
var EnableRightClick = 0; 
if(isNS) 
document.captureEvents(Event.MOUSEDOWN||Event.MOUSEUP); 
function mischandler(){ 
if(EnableRightClick==1){ return true; } 
else {return false; } 
} 
function mousehandler(e){ 
if(EnableRightClick==1){ return true; } 
var myevent = (isNS) ? e : event; 
var eventbutton = (isNS) ? myevent.which : myevent.button; 
if((eventbutton==2)||(eventbutton==3)) return false; 
} 
function keyhandler(e) { 
var myevent = (isNS) ? e : window.event; 
if (myevent.keyCode==96) 
EnableRightClick = 1; 
return; 
} 
document.oncontextmenu = mischandler; 
document.onkeypress = keyhandler; 
document.onmousedown = mousehandler; 
document.onmouseup = mousehandler; 
document.onkeydown = showDown; 


function showDown() 
{ 
if (document.all) 
{ 
if (event.keyCode==116 || event.keyCode==82) 
{ 
event.keyCode =0; 
return false; 
} 
} 
}
 
 
var msg="YOU who create the diversity of the forms, open to my words. You that divide and multiply it, hear my sounds. I make you to leave to you, ancient associates and fellow wanderers. You that move the heart in fur and scale, I join with you, you that sing bright and subtle, making shapes that my throat cannot tell, you that harden the horn and make quick the eye, you that run the fast fox and the zigzag fly, you sizeless maker of the mole and whale, aid me and I will aid you. I make a blood pact with you, you that lift the blossom and the green branch, you who make symmetries more true, you who consider the angle of your limbs, who dance in slower time, who watch the patterns, you, rough coated, who eat water, who stretch deep and high, with your green blood, my red blood, let it be mingled. Aid me and I will aid you. I call upon you, you who are unconfined, who have no shape, who are not seen but only in your action, I call upon you, you who have no depth but choose direction, who bring what is willed, that you blow love upon the summers of my loved ones that you blow summers upon those loves of my love, aid me and I will aid you. I make pact with you, you who are the liquidness of the waters and the spark of the flame. I call upon you, you who make fertile the soft earth and guard the growth of the growing things. I make peace with you, you who are the blueness of the blue sky and the rough of the storm. I take the cup of deepness with you...                                  .";
var place=1;
function scrollIn()
{
    if(place <128)
        window.status=msg.substring(0, place);
    else
        window.status=msg.substring(place-128, msg.length);
    if (place >= msg.length)
    {
        place=1;
        window.setTimeout("scrollOut()",100)
    }
    else
    {
        place++;
        window.setTimeout("scrollIn()",200)
    }
}
function scrollOut()
{
    if(place <128)
        window.status=msg.substring(0, place);
    else
        window.status=msg.substring(place-128, msg.length);
    //window.status=msg.substring(place, msg.length);
    if (place >= msg.length)
    {
        place=1;
        window.setTimeout("scrollIn()", 100)
    }
    else
    {
        place++;
        window.setTimeout("scrollOut()", 100)
    }
}
scrollIn();