function validateAtLeastOneChecked( frm, field_name, custErr ) {
 var checkboxes_checked = 0;
 for (i=0; i< frm.elements.length; i++) {
   if (frm.elements[i].name == field_name) {
     if (frm.elements[i].checked) {
    checkboxes_checked = 1;
  }
   }
 }
 if (checkboxes_checked == 0) {
   return '-> ' + custErr + "\n";
 } else {
  return '';
 }
}

function validateEmail(email) {
 var emailPat=/^(.+)@(.+)$/;
 var specialChars="\\(\\)<>@,;:\\\\\\\"\\.\\[\\]";
 var validChars="\[^\\s" + specialChars + "\]";
 var quotedUser="(\"[^\"]*\")";
 var ipDomainPat=/^\[(\d{1,3})\.(\d{1,3})\.(\d{1,3})\.(\d{1,3})\]$/;
 var atom=validChars + '+';
 var word="(" + atom + "|" + quotedUser + ")";
 var userPat=new RegExp("^" + word + "(\\." + word + ")*$");
 var domainPat=new RegExp("^" + atom + "(\\." + atom +")*$");
 var matchArray=email.match(emailPat);

 if (matchArray==null) {
  return false;
}

 var user=matchArray[1];
 var domain=matchArray[2];

 if (user.match(userPat)==null) {
  return false;
}

 var IPArray=domain.match(ipDomainPat);
 if (IPArray!=null) {
   for (var i=1;i<=4;i++) {
     if (IPArray[i]>255) {
    return false;
  }
   }
  return true;
 }

 var domainArray=domain.match(domainPat);
 if (domainArray==null) {
  return false;
}

 var atomPat=new RegExp(atom,"g");
 var domArr=domain.match(atomPat);
 var len=domArr.length;
 if (domArr[domArr.length-1].length<2 || domArr[domArr.length-1].length>3) {
  return false;
}

 if (len<2) {
  return false;
}

 return true;
}

  function validateData(strValidateStr,objValue,custErr) {
 var strErr = '';
 var epos = strValidateStr.search("=");
 var command  = "";
 var cmdvalue = "";
 if(epos >= 0) {
  command  = strValidateStr.substring(0,epos);
  cmdvalue = strValidateStr.substr(epos+1);
} else {
  command = strValidateStr;
 }

 switch(command) {

 case "req": case "required": {
   if (eval(objValue.value.length) == 0) {
     if (!custErr || custErr.length == 0) {
    strErr = '-> ' + objValue.name + " : Required Field.\n";
  } else {
    strErr = '-> ' + custErr + "\n";
   }
   }
  break;
 }

 case "maxlength":
 case "maxlen": {
   if (eval(objValue.value.length) >  eval(cmdvalue)) {
     if (!custErr || custErr.length == 0) {
    strErr = '-> ' + objValue.name + " : "+cmdvalue+" characters maximum."
           + "\n       [Current length = " + objValue.value.length + " ].\n";
  } else {
    strErr = '-> ' + custErr + "\n";
   }
   }
  break;
 }

 case "minlength": 
 case "minlen": {
   if (eval(objValue.value.length) <  eval(cmdvalue)) {
     if (!custErr || custErr.length == 0) {
    strErr = '-> ' + objValue.name + " : " + cmdvalue + " characters minimum."
           + "\n       [Current length = " + objValue.value.length + " ].\n";
  } else {
    strErr = '-> ' + custErr + "\n";
   }
   }
  break;
 }

 case "alnum":
 case "alphanumeric": {
  var charpos = objValue.value.search("[^A-Za-z0-9]");
  if (objValue.value.length > 0 &&  charpos >= 0) {
    if (!custErr || custErr.length == 0) {
    strErr = objValue.name+": Only alpha-numeric characters allowed."
           + "\n       [Error character position " + eval(charpos+1)+"].";
  } else {
    strErr = '-> ' + custErr + "\n";
   }
  }
  break; 
 }

 case "num": 
 case "numeric": {
  var charpos = objValue.value.search("[^0-9]");
  if (objValue.value.length > 0 &&  charpos >= 0) {
    if (!custErr || custErr.length == 0) {
    strErr = '-> ' + objValue.name+": Only digits allowed "
           + "\n       [Error character position " + eval(charpos+1)+"].\n";
  } else {
    strErr = '-> ' + custErr + "\n";
   }
  }
  break;
 }

 case "alphabetic":
 case "alpha": {
  var charpos = objValue.value.search("[^A-Za-z]");
  if (objValue.value.length > 0 &&  charpos >= 0) {
    if (!custErr || custErr.length == 0) {
    strErr = '-> ' + objValue.name+": Only alphabetic characters allowed"
           + "\n       [Error character position " + eval(charpos+1)+"].\n";
  } else {
    strErr = '-> ' + custErr + "\n";
   }
  }
  break; 
 }

 case "email": {
   if (!validateEmail(objValue.value,strErr)) {
     if (!custErr || custErr.length == 0) {
    strErr = '-> ' + objValue.name+": Enter a valid Email address.\n";
  } else {
    strErr = '-> ' + custErr + "\n";
   }
   }
  break;
 }

 case "lt": 
 case "lessthan": {
   if (isNaN(objValue.value)) {
   strErr = strError + '-> ' + objValue.name+": Should be a number.\n";
 } else {
   if (eval(objValue.value) >=  eval(cmdvalue)) {
     if (!custErr || custErr.length == 0) {
     strErr = '-> ' + objValue.name
            + " : value should be less than "+ cmdvalue +".\n";
   } else {
     strErr = '-> ' + custErr + "\n";
    }
   }
  }
  break;
 }

 case "gt": 
 case "greaterthan": {
   if (isNaN(objValue.value)) {
   strErr = '-> ' + objValue.name+": Should be a number.\n";
 } else {
   if (eval(objValue.value) <=  eval(cmdvalue)) {
     if (!custErr || custErr.length == 0) {
     strErr = '-> ' + objValue.name
            + " : value should be greater than " + cmdvalue + ".\n";
   } else {
     strErr = '-> ' + custErr + "\n";
    }
   }
  }
  break;
 }

 case "regexp": {
   if (!objValue.value.match(cmdvalue))  {
     if (!custErr || custErr.length == 0) {
    strErr = '-> ' + objValue.name+": Invalid characters found.\n";
  } else {
    strErr = '-> ' + custErr + "\n";
   }
   }
  break;
 }

 case "notregexp": case "!regexp": {
   if (objValue.value.match(cmdvalue)) {
     if (!custErr || custErr.length == 0) {
    strErr = '-> ' + objValue.name+": Invalid characters found.\n";
  } else {
    strErr = '-> ' + custErr + "\n";
   }
   }
  break;
 }

 case "dontselect": {
   if (objValue.selectedIndex == null) {
   alert("BUG: dontselect command for non-select Item");
 } else {
   if (objValue.selectedIndex == eval(cmdvalue)) {
     if (!custErr || custErr.length == 0) {
     strErr = '-> ' + objValue.name+": Please Select one option.\n";
   } else {
     strErr = '-> ' + custErr + "\n";
    }
   }
  }
  break;
 }

}
 return strErr;
}

  function validateForm(objFrm,arrObjDesc) {
 var strErr = '';
 for(var itrobj=0; itrobj < arrObjDesc.length; itrobj++) {
  var strErr_element = '';
  if(objFrm.elements.length <= itrobj)  { 
   alert("BUG: Obj descriptor for a non existent form element"); 
   return false; 
 }
  for (var itrdesc=0; itrdesc < arrObjDesc[itrobj].length ;itrdesc++) {
    if (strErr_element != '') {
    break;
  }
   strErr_element = validateData( arrObjDesc[itrobj][itrdesc][0],
                                  objFrm[itrobj],
                                  arrObjDesc[itrobj][itrdesc][1] );
  }
  strErr = strErr + strErr_element;
}
 return strErr;
}

//-- if using this method, you must specify the validation array
//-- in reverse order as well
  function validateFormReverse(objFrm,arrObjDesc) {
 var strErr = '';
 for(var itrobj=0; itrobj < arrObjDesc.length; itrobj++) {
  var strErr_element = '';
  if(objFrm.elements.length <= itrobj)  { 
   alert("BUG: Obj descriptor for a non existent form element"); 
   return false; 
 }
  for (var itrdesc=0; itrdesc < arrObjDesc[itrobj].length ;itrdesc++) {
    if (strErr_element != '') {
    break;
  }
   strErr_element = validateData( arrObjDesc[itrobj][itrdesc][0],
                                  objFrm[objFrm.length-1-itrobj],
                                  arrObjDesc[itrobj][itrdesc][1] );
  }
  strErr = strErr + strErr_element;
}
 return strErr;
}

  function displayErrors( header, strErr ) {
    if ((strErr) && (strErr.length > 0)) {
  alert( header + "\n" + strErr );
  return true;
} else {
  return false;
 }
  }
      function submit_new() {
      var validation_array = [];
      var default_validation = [];

      default_validation['email'] = [
        ['required','You must enter your email address in order to signup.'],
        ['email',   'Your email address appears to be invalid.']
      ];

      default_validation['gender'] = [
      ];

      default_validation['first_name'] = [
      ];

      default_validation['last_name'] = [
      ];

      default_validation['age'] = [
        [ "regexp=^(|1[3-9]|[2-9][0-9][0-9]?)$",
          "Your have entered an invalid age. (13+ and digits only)" ]
      ];

      default_validation['zip'] = [
      ['regexp=^(|[0-9A-Za-z -.][0-9A-Za-z -.][0-9A-Za-z -.][0-9A-Za-z -.]*)$',
       'Your postal code appears to be invalid.']
      ];

      // loop through list ids looking for list ids that require more
      for (var i=0;i<document.foca_pop.elements.length;i++) {
        if (document.foca_pop.elements[i].name == 'list_id' &&
            document.foca_pop.elements[i].checked == true) {

          // harris
          if (document.foca_pop.elements[i].value == 2839
              || document.foca_pop.elements[i].value == 2840
              || document.foca_pop.elements[i].value == 4131) {

            default_validation['zip'].unshift(
              ['required', "Please enter your zip code."]
            );

            default_validation['age'].unshift(
              ['required', "Please enter your age"]
            );

            default_validation['gender'].unshift(
              ['dontselect=0', "Please select your gender."]
            );

          }

        }

      }

      for (var i=0;i<document.foca_pop.elements.length;i++) {

        if (default_validation[document.foca_pop.elements[i].name]) {
          validation_array[i] =
            default_validation[document.foca_pop.elements[i].name];
        } else {
          validation_array[i] = [];
        }

      }

      var strErr = validateForm(document.foca_pop,validation_array);

      strErr = strErr + validateAtLeastOneChecked(document.foca_pop,'list_id',
                        'Please select at least one list.' );

      if (displayErrors( 'There were problems with your request:'      + "\n" +
                     '===========================================', strErr)) {
        return false;
      } else {
        return true;
      }
    }


var NA = null;

function UserInfo() {
  this.appCodeName = NA; this.appName = NA; this.appVersion = NA;
  this.platform = NA; this.cookiesEnabled = NA; this.javaEnabled = NA;

  /* Navigator object properties ************************************/

  if (top.navigator.appCodeName != null)  // get browser code name
    this.appCodeName = navigator.appCodeName;

  if (top.navigator.appName != null)  // get browser app name
    {
    if (navigator.userAgent.indexOf("Opera") != -1)
      this.appName = "Opera";
    else
      this.appName = navigator.appName;
    }

  if (top.navigator.appVersion != null)  // get browser version number
    {
    this.appVersion = navigator.appVersion;
    var index = this.appVersion.indexOf(" ");
    this.appVersion = this.appVersion.substring(0,index);
    if (this.appName.indexOf("Internet") != -1)
      {
      if (top.navigator.userAgent.indexOf("5.0") != -1)
        this.appVersion = "5.0";
      }
    }

}

var user = new UserInfo();

if ( ((  (user.appCodeName.toLowerCase().indexOf("mozilla") != -1)
      || (user.appName.toLowerCase().indexOf("netscape") != -1))
      && (parseInt(user.appVersion) >= 5))
    ||
     (   (user.appName.toLowerCase().indexOf("internet") != -1)
      && (parseInt(user.appVersion) >= 4))) {
  document.write( '<table cellspacing=0 cellpadding="0" border="0" bgcolor="#ffffff" ' );
  document.write( 'height="600" width="120"> ' );
  document.write( '<form target=_blank method="POST" action="http://www.focalex.com/subscriber/subscribe.mpl/249589" onsubmit="return submit_new();" name="foca_pop"> ' );
  document.write( '<input type=hidden name="affiliate_id" value="249589"> ' );
  document.write( '<input type=hidden name="gatherer_id" value="BIZLIT_EMB"> ' );
  document.write( '<input type=hidden name="form_type" value="skyscraper"> ' );
  document.write( '<input type=hidden name="form_version" value="business_1.2"> ' );
  document.write( '<input type=hidden name="country_code_guess" value="US"> ' );
  document.write( '  <tr> ' );
  document.write( '    <td align=center> ' );
  document.write( '    <img src="http://img.focalex.com/images/affiliate/ban/top_120_white.gif" width="118" border="0" border="0"> ' );
  document.write( '    </td> ' );
  document.write( '  </tr> ' );
  document.write( '  <tr> ' );
  document.write( '    <td align=center valign="middle"> ' );
  document.write( '      <table border=0 cellspacing="0" cellpadding="0" ' );
  document.write( '      bgcolor="#ffffff"> ' );
  document.write( '     ' );
  document.write( '         ' );
  document.write( '        <tr> ' );
  document.write( '          <td nowrap> ' );
  document.write( '            <font color="#000000" face="Arial,Helvetica" size="1" ' );
  document.write( '            style="font-size:8pt;"> ' );
  document.write( '            <input type=checkbox name="list_id" value="273" checked> ' );
  document.write( '            Small Biz.</font> ' );
  document.write( '          </td> ' );
  document.write( '        </tr> ' );
  document.write( '         ' );
  document.write( '        <tr> ' );
  document.write( '          <td nowrap> ' );
  document.write( '            <font color="#000000" face="Arial,Helvetica" size="1" ' );
  document.write( '            style="font-size:8pt;"> ' );
  document.write( '            <input type=checkbox name="list_id" value="257" checked> ' );
  document.write( '            Home Office</font> ' );
  document.write( '          </td> ' );
  document.write( '        </tr> ' );
  document.write( '         ' );
  document.write( '        <tr> ' );
  document.write( '          <td nowrap> ' );
  document.write( '            <font color="#000000" face="Arial,Helvetica" size="1" ' );
  document.write( '            style="font-size:8pt;"> ' );
  document.write( '            <input type=checkbox name="list_id" value="1802"> ' );
  document.write( '            Sales/Mktg</font> ' );
  document.write( '          </td> ' );
  document.write( '        </tr> ' );
  document.write( '         ' );
  document.write( '        <tr> ' );
  document.write( '          <td nowrap> ' );
  document.write( '            <font color="#000000" face="Arial,Helvetica" size="1" ' );
  document.write( '            style="font-size:8pt;"> ' );
  document.write( '            <input type=checkbox name="list_id" value="1203"> ' );
  document.write( '            IT Pros</font> ' );
  document.write( '          </td> ' );
  document.write( '        </tr> ' );
  document.write( '         ' );
  document.write( '        <tr> ' );
  document.write( '          <td nowrap> ' );
  document.write( '            <font color="#000000" face="Arial,Helvetica" size="1" ' );
  document.write( '            style="font-size:8pt;"> ' );
  document.write( '            <input type=checkbox name="list_id" value="401"> ' );
  document.write( '            Biz Owners</font> ' );
  document.write( '          </td> ' );
  document.write( '        </tr> ' );
  document.write( '         ' );
  document.write( '        <tr> ' );
  document.write( '          <td nowrap> ' );
  document.write( '            <font color="#000000" face="Arial,Helvetica" size="1" ' );
  document.write( '            style="font-size:8pt;"> ' );
  document.write( '            <input type=checkbox name="list_id" value="1202"> ' );
  document.write( '            HR Pros</font> ' );
  document.write( '          </td> ' );
  document.write( '        </tr> ' );
  document.write( '         ' );
  document.write( '        <tr> ' );
  document.write( '          <td nowrap> ' );
  document.write( '            <font color="#000000" face="Arial,Helvetica" size="1" ' );
  document.write( '            style="font-size:8pt;"> ' );
  document.write( '            <input type=checkbox name="list_id" value="1501"> ' );
  document.write( '            Biz. Travel</font> ' );
  document.write( '          </td> ' );
  document.write( '        </tr> ' );
  document.write( '         ' );
  document.write( '        <tr> ' );
  document.write( '          <td nowrap> ' );
  document.write( '            <font color="#000000" face="Arial,Helvetica" size="1" ' );
  document.write( '            style="font-size:8pt;"> ' );
  document.write( '            <input type=checkbox name="list_id" value="143"> ' );
  document.write( '            Consulting</font> ' );
  document.write( '          </td> ' );
  document.write( '        </tr> ' );
  document.write( '         ' );
  document.write( '        <tr> ' );
  document.write( '          <td nowrap> ' );
  document.write( '            <font color="#000000" face="Arial,Helvetica" size="1" ' );
  document.write( '            style="font-size:8pt;"> ' );
  document.write( '            <input type=checkbox name="list_id" value="147"> ' );
  document.write( '            Insurance</font> ' );
  document.write( '          </td> ' );
  document.write( '        </tr> ' );
  document.write( '         ' );
  document.write( '        <tr> ' );
  document.write( '          <td nowrap> ' );
  document.write( '            <font color="#000000" face="Arial,Helvetica" size="1" ' );
  document.write( '            style="font-size:8pt;"> ' );
  document.write( '            <input type=checkbox name="list_id" value="256"> ' );
  document.write( '            Int. Biz.</font> ' );
  document.write( '          </td> ' );
  document.write( '        </tr> ' );
  document.write( '         ' );
  document.write( '        <tr> ' );
  document.write( '          <td nowrap> ' );
  document.write( '            <font color="#000000" face="Arial,Helvetica" size="1" ' );
  document.write( '            style="font-size:8pt;"> ' );
  document.write( '            <input type=checkbox name="list_id" value="140"> ' );
  document.write( '            Biz.</font> ' );
  document.write( '          </td> ' );
  document.write( '        </tr> ' );
  document.write( '         ' );
  document.write( '        <tr> ' );
  document.write( '          <td nowrap> ' );
  document.write( '            <font color="#000000" face="Arial,Helvetica" size="1" ' );
  document.write( '            style="font-size:8pt;"> ' );
  document.write( '            <input type=checkbox name="list_id" value="213"> ' );
  document.write( '            Pers. Finance</font> ' );
  document.write( '          </td> ' );
  document.write( '        </tr> ' );
  document.write( '         ' );
  document.write( '        <tr> ' );
  document.write( '          <td nowrap> ' );
  document.write( '            <font color="#000000" face="Arial,Helvetica" size="1" ' );
  document.write( '            style="font-size:8pt;"> ' );
  document.write( '            <input type=checkbox name="list_id" value="291"> ' );
  document.write( '            Biz. Opps.</font> ' );
  document.write( '          </td> ' );
  document.write( '        </tr> ' );
  document.write( '         ' );
  document.write( '         ' );
  document.write( '        <tr> ' );
  document.write( '          <td nowrap width="100" style="padding:2px;"> ' );
  document.write( '          <table width="100%" bgcolor="white" ' );
  document.write( '          cellspacing="0" cellpadding="0"> ' );
  document.write( '            <td valign=top><input type=checkbox name="list_id" value="2583" checked style="height:17px;"></td> ' );
  document.write( '            <td><font color="#000000" ' );
  document.write( '            face="Arial,Helvetica" size="1" style="font-size:8pt;"> ' );
  document.write( '                  Signup to <b>Offers-For-You.com</b> for great Steals & Deals ' );
  document.write( '</font> ' );
  document.write( '            </td> ' );
  document.write( '          </table> ' );
  document.write( '          </td> ' );
  document.write( '        </tr> ' );
  document.write( '         ' );
  document.write( '      </table> ' );
  document.write( '    </td> ' );
  document.write( '  </tr> ' );
  document.write( '  <tr> ' );
  document.write( '    <td align=center valign="top"> ' );
  document.write( '      <a href="http://www.focalex.com/subs.emp?aid=249589" target="_blank"><img width=118 border="0" src="http://img.focalex.com/images/affiliate/ban/more_lists_120_white.gif"></a> ' );
  document.write( '      <font size=1 color="#000000" ' );
  document.write( '      face="Arial,Helvetica" style="font-size:8pt;"> ' );
  document.write( '              <select name=job_title> ' );
  document.write( '          <option value="">Title ' );
  document.write( '          <option value="Accountant/Bookkeeper">Accountant ' );
  document.write( '            <option value=Actor>Actor ' );
  document.write( '            <option value=Administrator>Admin ' );
  document.write( '            <option value=Analyst>Analyst ' );
  document.write( '            <option value=Architect>Architect ' );
  document.write( '            <option value=Artist>Artist ' );
  document.write( '            <option value="Assistant/Support Staff/CSR">Ass'+"'"+'t/CSR ' );
  document.write( '            <option value="Associate/Individual Contributor/Specialist">Associate ' );
  document.write( '            <option value="Lawyer/Attorney">Attorney ' );
  document.write( '            <option value=Auditor>Auditor ' );
  document.write( '            <option value=Builder>Builder ' );
  document.write( '            <option value=Buyer>Buyer ' );
  document.write( '            <option value=CFO>CFO ' );
  document.write( '            <option value="CIO/CTO">CIO/CTO ' );
  document.write( '            <option value=Celebrity>Celebrity ' );
  document.write( '            <option value="Chairman/CEO/COO">Chair/CEO ' );
  document.write( '            <option value=Chef>Chef ' );
  document.write( '            <option value=Clergy>Clergy ' );
  document.write( '            <option value="Engineer (Computer)">Comp Eng ' );
  document.write( '            <option value=Consultant>Consultant ' );
  document.write( '            <option value=Controller>Controller ' );
  document.write( '            <option value=Craftsman>Craftsman ' );
  document.write( '            <option value="Database Administrator">DB Admin ' );
  document.write( '            <option value=Dentist>Dentist ' );
  document.write( '            <option value=Designer>Designer ' );
  document.write( '            <option value="Director/Sr Management">Director ' );
  document.write( '            <option value="Teacher/Educator/Professor">Educator ' );
  document.write( '            <option value=Engineer>Engineer ' );
  document.write( '            <option value=Entrepreneur>Entrepr'+"'"+'r ' );
  document.write( '            <option value=Executive>Executive ' );
  document.write( '            <option value=Farmer>Farmer ' );
  document.write( '            <option value="Flight Attendant">Flight att ' );
  document.write( '            <option value=Foreman>Foreman ' );
  document.write( '            <option value="Regional/General Mgr">Gen Mgr ' );
  document.write( '            <option value=HR>HR ' );
  document.write( '            <option value="Healthcare Practitioner/Technician">Healthcare ' );
  document.write( '            <option value=Homemaker>Homemaker ' );
  document.write( '            <option value=Inspector>Inspector ' );
  document.write( '            <option value=Librarian>Librarian ' );
  document.write( '            <option value="Manager/Supervisor">Manager ' );
  document.write( '            <option value=Military>Military ' );
  document.write( '            <option value=Musician>Musician ' );
  document.write( '            <option value="Network Administrator">Net Admin ' );
  document.write( '            <option value=Nurse>Nurse ' );
  document.write( '            <option value=Operator>Operator ' );
  document.write( '            <option value="Owner/Proprietor/Principal">Owner ' );
  document.write( '            <option value=Partner>Partner ' );
  document.write( '            <option value="Doctor/Physician">Physician ' );
  document.write( '            <option value="Planner/Scheduler">Planner ' );
  document.write( '            <option value=Politician>Politician ' );
  document.write( '            <option value=Producer>Producer ' );
  document.write( '            <option value=Professional>Profess'+"'"+'l ' );
  document.write( '            <option value="Programmer/Developer">Programmer ' );
  document.write( '            <option value="Project Manager">Proj Mngr ' );
  document.write( '            <option value=Recruiter>Recruiter ' );
  document.write( '            <option value="Account Manager/Representative/Sales">Rep/Sales ' );
  document.write( '            <option value=Retired>Retired ' );
  document.write( '            <option value="Sales Management">Sales Mgr ' );
  document.write( '            <option value="Researcher/Scientist">Scientist ' );
  document.write( '            <option value="Secretary/Treasurer">Sec/Treas ' );
  document.write( '            <option value="Senior Management">Snr Mngr ' );
  document.write( '            <option value=Staff>Staff ' );
  document.write( '            <option value=Student>Student ' );
  document.write( '            <option value="Administrative/Clerical/Support Services">Supp Svcs ' );
  document.write( '            <option value="Systems Administrator">Sys Admin ' );
  document.write( '            <option value="Systems Architect">Sys Arch ' );
  document.write( '            <option value="Technologist/Technician">Technic ' );
  document.write( '            <option value="Travel Agent">Trav Agent ' );
  document.write( '            <option value=Unemployed>Unempl ' );
  document.write( '            <option value="VP/Sr VP/Exec VP">VP ' );
  document.write( '            <option value="Editor/Writer">Writer ' );
  document.write( '            <option value=Other>Other ' );
  document.write( '  ' );
  document.write( '        </select> ' );
  document.write( ' ' );
  document.write( '      <br> ' );
  document.write( '              <select name=industry> ' );
  document.write( '          <option value="">Industry ' );
  document.write( '          <option value="Accounting/Financial Services">Accntg/Fin ' );
  document.write( '            <option value="Administrative/Managerial">Admin/Mngr ' );
  document.write( '            <option value="Administrative/Support Services">Admin/Supp ' );
  document.write( '            <option value="Advertising/Marketing/Public Relations">Adv/Mrktng ' );
  document.write( '            <option value="Agriculture/Forestry/Fishing">Agriculture ' );
  document.write( '            <option value=Airline>Airline ' );
  document.write( '            <option value="Arts/Entertainment/Media">Arts ' );
  document.write( '            <option value="Biotechnology/Pharmaceutical">Bio/Pharm ' );
  document.write( '            <option value="Community/Social Services/Nonprofit">Community ' );
  document.write( '            <option value="Computer related (general)">Comp Gen ' );
  document.write( '            <option value="Computer related (hardware)">Comp Hrd ' );
  document.write( '            <option value="Computer related (IS, MIS, DP)">Comp IS ' );
  document.write( '            <option value="Computer related (software)">Comp Sft ' );
  document.write( '            <option value="Computer related (WWW)">Comp WWW ' );
  document.write( '            <option value="Construction/Mining/Trades">Construct ' );
  document.write( '            <option value="Consulting Services">Consulting ' );
  document.write( '            <option value="Customer Service/CallCenter">Cust Svc ' );
  document.write( '            <option value="Education/Training/Library">Educ/Libr ' );
  document.write( '            <option value="Employment Services">Employment ' );
  document.write( '            <option value="Engineering/Architectural Services">Eng/Arch ' );
  document.write( '            <option value=Government>Govt ' );
  document.write( '            <option value="Human Resources">HR ' );
  document.write( '            <option value=Homemaker>Homemaker ' );
  document.write( '            <option value=Insurance>Insurance ' );
  document.write( '            <option value="Law Enforcement/Security">Law En/Sec ' );
  document.write( '            <option value="Legal Service">Legal Svc ' );
  document.write( '            <option value="Installation/Maintenance/Repair">Maint ' );
  document.write( '            <option value="Manufacturing/Operations/Production">Manufact ' );
  document.write( '            <option value="Medical/Health Care">Medical ' );
  document.write( '            <option value=Military>Military ' );
  document.write( '            <option value="Real Estate">Real Estate ' );
  document.write( '            <option value="Religious Services">Religious ' );
  document.write( '            <option value="Restaurant/Food Services">Rest/Food ' );
  document.write( '            <option value="Retail/Wholesale Services">Retail ' );
  document.write( '            <option value=Retired>Retired ' );
  document.write( '            <option value="Sales/Service">Sales ' );
  document.write( '            <option value=Science>Science ' );
  document.write( '            <option value="Self Employed">Self Empl ' );
  document.write( '            <option value="Sports/Recreation">Sports ' );
  document.write( '            <option value=Student>Student ' );
  document.write( '            <option value=Telecommunications>Telecom ' );
  document.write( '            <option value="Transportation/Logistics">Trans/Log ' );
  document.write( '            <option value="Transportation/Warehousing">Trans/Wrhs ' );
  document.write( '            <option value="Travel/Hospitality">Trav/Hosp ' );
  document.write( '            <option value=Utilities>Utilities ' );
  document.write( '            <option value=Other>Other ' );
  document.write( '  ' );
  document.write( '        </select> ' );
  document.write( ' ' );
  document.write( '      <br> ' );
  document.write( '      E-mail:<br> ' );
  document.write( '      <input type=text name="email" maxlength="50" size="10"><br> ' );
  document.write( '      Zip Code:<br> ' );
  document.write( '      <input type=text name="zip" size="5" maxlength="25"> ' );
  document.write( '      <input type=submit name="x" value="Sign Up!"><br><br> ' );
  document.write( '      <a href="http://www.focalex.com/offers.mpl?location=3&aid=249589&form_type=headline&_offer_id=41&_ad_id=145&_depth=1&_client_id=56&no_thanks=1" target="_blank"><font color="#000000">No ' );
  document.write( '      Thanks!</font></a> ' );
  document.write( '      <br> ' );
  document.write( '      <a href="http://www.focalex.com/privacy/" target="_blank"> ' );
  document.write( '      <font color="#000000">Privacy Policy</font></a> ' );
  document.write( '      <br><br> ' );
  document.write( '      <a href="http://www.focalex.com/affiliates/?pc=249589&ban=isky" target="_blank"><img src="http://img.focalex.com/images/affiliate/ban/webmasters_120_white.gif" width="118" border="0"></a> ' );
  document.write( '      <br><br> ' );
  document.write( '    </td> ' );
  document.write( '  </tr> ' );
  document.write( '</form> ' );
  document.write( '</table> ' );
} else {
  document.write( '<iframe width="120" height="600" frameborder="0" border="0" framspacing="0" marginheight="0" marginiwdth="0" scrolling="no" vspace="0" hspace="0" src="http://www.focalex.com/code/embedded_form.mpl?type=iframe&lname=business&form_type=skyscraper&color=white&aid=249589&gatherer_id=BIZLIT_EMB&target=_blank">' );
  document.write( '<a href="http://www.focalex.com/subs.emp?aid=249589" target="_blank"><img src="http://img.focalex.com/images/affiliate/ban/fallback_business_120.gif" width="120" height="600" border="0"></a>' );
  document.write( '</iframe>' );
}
