<!--

// Simple image pre-load for nav buttons
Image1= new Image(241,32)
Image1.src = "/images/rightMenu-backup-archive-o.gif"

Image2= new Image(241,34)
Image2.src = "/images/rightMenu-book-design-o.gif"

Image3= new Image(241,34)
Image3.src = "/images/rightMenu-data-capture-o.gif"

Image4= new Image(241,34)
Image4.src = "/images/rightMenu-fonts-o.gif"

Image5= new Image(241,34)
Image5.src = "/images/rightMenu-scanning-o.gif"

Image6= new Image(241,34)
Image6.src = "/images/rightMenu-typesetting-o.gif"
// End simple image pre-load for nav buttons

function mouseover(imageID){
  document.getElementById(imageID).src = "/images/rightMenu-" + imageID + "-o.gif";
}

function mouseout(imageID){
  document.getElementById(imageID).src = "/images/rightMenu-" + imageID + ".gif";
}

// Used only when site was in test as submit buttons were disabled.
var message =  "Thank you for testing this Web page. As this site is not currently live, and as this function"
message += " requires the backend code to be in place it has been disabled. It will be enabled when it is"
message += " on the live server.";

function thanks(){
    alert(message);
    return false;
}
//-->  