// JavaScript Document
<!--
function pviiClassNew(obj, new_style) {
    obj.className = new_style;
}

function MM_goToURL() { //v3.0
  var i, args=MM_goToURL.arguments; document.MM_returnValue = false;
  for (i=0; i<(args.length-1); i+=2) eval(args[i]+".location='"+args[i+1]+"'");
}

function FrontPage_Form1_Validator(theForm)
{

  if (theForm.Contact_FirstName.value == "")
  {
    alert("Please enter a value for the \"Contact_FirstName\" field.");
    theForm.Contact_FirstName.focus();
    return (false);
  }

  if (theForm.Contact_LastName.value == "")
  {
    alert("Please enter a value for the \"Contact_LastName\" field.");
    theForm.Contact_LastName.focus();
    return (false);
  }

  if (theForm.Contact_Organization.value == "")
  {
    alert("Please enter a value for the \"Contact_Organization\" field.");
    theForm.Contact_Organization.focus();
    return (false);
  }

  if (theForm.Contact_StreetAddress.value == "")
  {
    alert("Please enter a value for the \"Contact_StreetAddress\" field.");
    theForm.Contact_StreetAddress.focus();
    return (false);
  }

  if (theForm.Contact_City.value == "")
  {
    alert("Please enter a value for the \"Contact_City\" field.");
    theForm.Contact_City.focus();
    return (false);
  }

  if (theForm.Contact_State.value == "")
  {
    alert("Please enter a value for the \"Contact_State\" field.");
    theForm.Contact_State.focus();
    return (false);
  }

  if (theForm.Contact_ZipCode.value == "")
  {
    alert("Please enter a value for the \"Contact_ZipCode\" field.");
    theForm.Contact_ZipCode.focus();
    return (false);
  }

  if (theForm.Contact_ZipCode.value.length > 12)
  {
    alert("Please enter at most 12 characters in the \"Contact_ZipCode\" field.");
    theForm.Contact_ZipCode.focus();
    return (false);
  }

  if (theForm.Contact_WorkPhone.value == "")
  {
    alert("Please enter a value for the \"Contact_WorkPhone\" field.");
    theForm.Contact_WorkPhone.focus();
    return (false);
  }

  if (theForm.Contact_WorkPhone.value.length > 25)
  {
    alert("Please enter at most 25 characters in the \"Contact_WorkPhone\" field.");
    theForm.Contact_WorkPhone.focus();
    return (false);
  }

  if (theForm.Contact_Email.value == "")
  {
    alert("Please enter a value for the \"Contact_Email\" field.");
    theForm.Contact_Email.focus();
    return (false);
  }
  return (true);
}

function userLogin() {
	alert("User login is not yet available. Please check back at a later time.");
	//window.location.href='http://orders.sdilink.com/CGI-BIN/LANSAWEB?PROCFUN+WORDPR01+WEBFUNC+M37';
}

function userSignUp() {
	alert("User registration is not yet available. Please check back at a later time.");
	//window.location.href='http://orders.sdilink.com/forms/setup.htm';
}

//-->