   var msg = "Welcome to the INCA Europe Ltd website!       We hope that you find the site both informative and easy to use.               ";
   var pos = 0;

function scrollMsg() {
  window.status = msg.substring(pos, msg.length) + msg.substring(0, pos);
  if (++pos > msg.length)
    pos = 0;
  window.setTimeout("scrollMsg()", 100);
}

function CheckForm(formObj) {
    for (i=0;i < formObj.length;i++)
        if (formObj.elements[i].value == "" |
            formObj.elements[i].valur == "Invalid") {
            alert("All fields must be completed on this form!")
            formObj.elements[i].focus()
            return
        }
     formObj.submit()
}