<!--
function simpleq() {
 qmsg = "Input URL(example www.0318labs.com)  or E-mail to check to see if your supplier is on our approved list.";
 ansstr1 = "www.strongconnection.net";
 ansstr2 = "strongconnection.net"; 
 ansstr3 = "info@0318labs.com";
 ansstr4 = "www.kawase-shouten.com";
 ansstr5 = "www.grow-younger.net";
 ansstr6 = "kawase-shouten.com";
 ansstr7 = "grow-younger.net";
 ansstr8 = "0318labs@safe-mail.net";
 ansstr9 = "pilocine@hanmail.net";
 retmsg = prompt(qmsg,"");
 
 if(retmsg == ansstr1) {
  alert("Yes, it is our supplier.");
 }
  else if(retmsg == ansstr2) {
  alert("Yes, it is our supplier.");
  }
 else if(retmsg == ansstr3) {
  alert("Yes, it is our supplier.");
  } 
 else if(retmsg == ansstr4) {
  alert("Yes, it is our supplier.");
  }  
 else if(retmsg == ansstr5) {
  alert("Yes, it is our supplier.");
  } 
 else if(retmsg == ansstr6) {
  alert("Yes, it is our supplier.");
  }    
   else if(retmsg == ansstr7) {
  alert("Yes, it is our supplier.");
  } 
   else if(retmsg == ansstr8) {
  alert("Yes, it is our supplier.");
  }  
 else if(retmsg == ansstr9) {
  alert("Yes, it is our supplier.");
  }    
 else {
  alert("No, it is not our supplier.");
 }
}
//-->