/*
  -------------------------------------------------------------------------
		      Elitics Form Validator (elitics-3ways.js)
  -------------------------------------------------------------------------  
*/

function eliticssubmit(){
    s_CallToActionName = "McAfee False Positive Campaign:c";  //the :c designates it was completed :v is that it was just viewed
    s_First = document.forms['3waysForm'].first_name.value;
    s_Last =  document.forms['3waysForm'].last_name.value;
    s_Phone1 =  document.forms['3waysForm'].phone.value;
    s_Email =  document.forms['3waysForm'].email.value;
    s_Company =  document.forms['3waysForm'].company.value;
     
    s_Classification = 'Web::' + document.getElementById("00N20000000hd0r").value + '::6::McAfee False Positive Campaign'; //this is essentially taking the values of the form and making classification entries
    document.forms['3waysForm'].submit();
    return true;
}