function scrollit(seed) {
var m1  = "Verde Guatemala (Green Marble) The finest qualities and shades of green marble offered by Divya Impex, The exporters of Indian Dimensional stones. Marble, Granite, Sandstone, Limestone, Slate, Onyx .... Blocks, Slabs, Tiles in all sizes and finish ... Tazzaro (Chips), Crazy pieces, cut sizes, facia tiles, designer floor ... we offer all these and a lot more.";
var msg=m1;
var out = " ";
var c   = 1;
if (seed > 200) {
seed--;
cmd="scrollit("+seed+")";
timerTwo=window.setTimeout(cmd,100);
}
else if (seed <= 200 && seed > 0) {
for (c=0 ; c < seed ; c++) {
out+=" ";
}
out+=msg;
seed--;
window.status=out;
cmd="scrollit("+seed+")";
timerTwo=window.setTimeout(cmd,100);
}
else if (seed <= 0) {
if (-seed < msg.length) {
out+=msg.substring(-seed,msg.length);
seed--;
window.status=out;
cmd="scrollit("+seed+")";
timerTwo=window.setTimeout(cmd,100);
}
else {
window.status=" ";
timerTwo=window.setTimeout("scrollit(200)",100);
      }
   }
}

function lBdy() {
	scrollit(100);
        trapMouse();
}
function disable_Rght(e)
{
    var browser = navigator.appName.substring ( 0, 9 );
    var event_number = 0;
    if (browser=="Microsoft")
        event_number = event.button;
    else if (browser=="Netscape")
        event_number = e.which;

    if ( event_number==2 || event_number==3 )
        {
        alert("|| Divya Impex || Exporters of Verde Guatemala and all other dimensional stones from India. ||");
        }

    return (true);
}

function chk_93 ()
{
    var mouse_key = 93;
    var keycode = event.keyCode;

    if ( keycode == mouse_key )
 	alert("|| Divya Impex || Exporters of Verde Guatemala and all other dimensional stones from India. ||");

}

function trapMouse ()
{
    var browser = navigator.appName.substring ( 0, 9 );

    document.onmousedown = disable_Rght;

    if ( browser == "Microsoft" )
        document.onkeydown = chk_93;
    else if ( browser == "Netscape" )
        document.captureEvents( Event.MOUSEDOWN );
}
