//No Right Click
message = "These images are copyright Andreas Custom Design and can't be used without permission.";
function NoRightClick(b) {
 if(((navigator.appName=="Microsoft Internet Explorer")&&(event.button > 1)) || ((navigator.appName=="Netscape")&&(b.which > 1))){
  alert(message);
  return false;
 }
}
document.onmousedown = NoRightClick;

//Window opener for tools
var openit1;
function newwin(openurl1) {
 openit=window.open(openurl1,'image','status,resizable,scrollbars,width=1000,height=750');
 return false;
}
//Window openers for template order
var openit2;
function templatelook(openurl2) {
 openit2=window.open(openurl2,'Template','status,width=520,height=230');
 return false;
}
var openit3;
function templatelook2(openurl3) {
 openit3=window.open(openurl3,'Template2','status,width=520,height=280');
 return false;
}
var openit4
function templatelook3(openurl4) {
 openit4=window.open(openurl4,'Template3','status,width=520,height=500');
 return false;
}
// All you have to do is put another text in the variable message.
// Don't forget to break all lines with a ^
// When you do not place a ^ at the end of all the message, the
// message will not repeat

  message2     = "Welcome to Andreas Custom Design^" +
  				 "Thanks for stopping by!^" +
				 "Please come again!^" +
                 "^"
  scrollSpeed = 50
  lineDelay   = 3500

  // Do not change the text below //

  txt         = ""

  function scrollText(pos) {
    if (message2.charAt(pos) != '^') {
      txt    = txt + message2.charAt(pos)
      status = txt
      pauze  = scrollSpeed
    }
    else {
      pauze = lineDelay
      txt   = ""
      if (pos == message2.length-1) pos = -1
    }
    pos++
    setTimeout("scrollText('"+pos+"')",pauze)
  }

  // Unhide -->
scrollText(0)