// JavaScript Document
// (C) 2003 CodeLifter.com
// Source: CodeLifter.com
// Do not remove this header

// Set the message for the alert box
am = "OOPS!";

// do not edit below this line
// ===========================
bV  = parseInt(navigator.appVersion)
bNS = navigator.appName=="Netscape"
bIE = navigator.appName=="Microsoft Internet Explorer"

function nrc(e) {
   if (bNS && e.which > 1){
      alert(am)
      return false;
   } else if (bIE && (event.button >1)) {
     alert(am)
     return false;
   }
}

document.onmousedown = nrc;
if (document.layers) window.captureEvents(Event.MOUSEDOWN);


<!-- Scroll Start-->

// the string that should scroll
var scrlStr = "! ! ! ! !  Welcome to Rainbow Pizza Restaurant - We Take Pride In Our Quality. Please Allow Time For Preparation as All Our Food Is Cooked to Order ! ! ! ! !" 

// the width of the scrolling area
var width = 120;

var strLen = scrlStr.length;
var pos = 1 - width;                // start far enough to the left for only
                                    // one letter to be showing

function scroll(){
    var scroll = "";                // initialize the string to be printed
    pos++;                          // move to the right in the string
    if (pos == strLen)              // start over if the string is done        
        pos = 1 - width;            // scrolling

    if (pos<0) {                    // add spaces to beginning if necessary
        for (var i=1; i<=Math.abs(pos); i++)
            scroll = scroll + " ";
       scroll = scroll + scrlStr.substring(0, width - i + 1);
    }
    else
        scroll = scroll + scrlStr.substring(pos, pos + width);

    window.status = scroll;         // print the string
    setTimeout("scroll()",70);     // recurse after 1/7 of a second
}

//

<!-- Scroll Ends-->




function openmypage(pagetoopen)
{
	//alert (pagetoopen);
	
	window.open (pagetoopen,"openmypage","width=1000,height=650,location=0,menubar=0,resizable=0,scrollbars=1,status=1,titlebar=none,toolbar=0,screenX=15,left=15,screenY=65,top=20");
}


function openChromeslessWindow(openUrl, winName, wWidth, wHeight, wPosx, wPosy, wTIT,
												windowBORDERCOLOR, windowBORDERCOLORsel, windowTITBGCOLOR, windowTITBGCOLORsel,
													bCenter, sFontFamily, sFontSize, sFontColor)
													{
	
 window.open(openUrl,'navwindow','width='+wWidth+',height='+wHeight+',align=center,toolbar=0,resizable=0,scrolling=0'); 
	//0openchromeless(openUrl,winName, wWidth, wHeight, wPosx, wPosy, wTIT, wTIT ,
		//					windowBORDERCOLOR, windowBORDERCOLORsel, windowTITBGCOLOR, windowTITBGCOLORsel,
	//		/					bCenter, sFontFamily, sFontSize, sFontColor);
}
