var stagetoggle = 0;

function isNN4() {
    if (navigator.appName.indexOf("Netscape") != -1 && navigator.appVersion.indexOf("4") != -1) return true;
    else return false;
}

function HideShowStage2(x) {

if (x!='no') {

 if (isNN4()) {
   document.FORMLOGIN.Stage2.visibility = "show";
 }
 else {
   document.FORMLOGIN.Stage2.style.visibility = "visible";
 }

}
else {
  
 if (isNN4()) {
  document.FORMLOGIN.Stage2.visibility = "hide";
 }
 else {
  document.FORMLOGIN.Stage2.style.visibility = "hidden";
 }

}

}


function orderSubmit(type) 
{
if (type == 'FORMLOGIN') {
 if (!checkRequired() )
   {	
  document.FORMLOGIN.submit();
  return true;
   }
 else {
   return false;
   }
}
}


function checkRequired() {

if (document.FORMLOGIN.product.value == 'no')
{
alert('You have not selected a product.');
return true;
}

else 
{
return false;
}

}
