function applyLoop(){
   var theForm = document.application;
   var url = "http://genco6.genco.com/quebec/careers.nsf/applicationfr?OpenForm";
   var theJobs = "";
   for(i=0; i< theForm.elements.length; i++)
   {
      if(theForm.elements[i].type == "checkbox")
      {
        if (theForm.elements[i].checked)
        {
          theJobs += "&" + theForm.elements[i].name + "=" + theForm.elements[i].value
        }   //checked
      }    //checkbox
   }   //for
   window.location= url + theJobs;
}
