<!--
function RegistrationValidator(theForm)
{

  if (theForm.firstname.value == "")
  {
    alert("Please enter a value for the \"firstname\" field.");
    theForm.firstname.focus();
    return (false);
  }

  if (theForm.firstname.value.length < 1)
  {
    alert("Please enter at least 1 characters in the \"firstname\" field.");
    theForm.firstname.focus();
    return (false);
  }

  if (theForm.lastname.value == "")
  {
    alert("Please enter a value for the \"lastname\" field.");
    theForm.lastname.focus();
    return (false);
  }

  if (theForm.lastname.value.length < 1)
  {
    alert("Please enter at least 1 characters in the \"lastname\" field.");
    theForm.lastname.focus();
    return (false);
  }

  if (theForm.email.value == "")
  {
    alert("Please enter a value for the \"email\" field.");
    theForm.email.focus();
    return (false);
  }

  if (theForm.email.value.length < 1)
  {
    alert("Please enter at least 1 characters in the \"email\" field.");
    theForm.email.focus();
    return (false);
  }

  if (theForm.company.value == "")
  {
    alert("Please enter a value for the \"company\" field.");
    theForm.company.focus();
    return (false);
  }

  if (theForm.company.value.length < 1)
  {
    alert("Please enter at least 1 characters in the \"company\" field.");
    theForm.company.focus();
    return (false);
  }

  return (true);
}
//-->

<!--
function popup(mylink, windowname)
{
if (! window.focus)return true;
var href;
if (typeof(mylink) == 'string')
   href=mylink;
else
   href=mylink.href;
window.open(href, windowname, 'width=800,height=600,scrollbars=yes');
return false;
}
//-->


<!--

function testScreen()
{
window.focus();
if(screen.height<=600)
{
winmax();
}
else if((document.body.offsetHeight<600)||(document.body.offsetwidth<800)) 
{
window.moveTo(0,0); 
window.resizeTo(800,600);
}
}
function winmax()
{
window.moveTo(0,0); 
window.resizeTo(screen.width,screen.height);
}

//-->


<!--

// Global variables 

var splashnum = 0 

// Change picture 

function changesplashpic() { 

  splashnum++; if (splashnum > 4) {splashnum = 1} 
  document.images['splash_'].src = 'images/splash_' + splashnum + '.jpg' 
  setTimeout("changesplashpic()",4000) 
} 
//-->

<!--

// Global variables 

var splnum = 0 

// Change picture 

function changesplpic() { 

  splnum++; if (splnum > 4) {splnum = 1} 
  document.images['spl_'].src = 'images/spl_' + splnum + '.jpg' 
  setTimeout("changesplpic()",4000) 
} 
//-->
