
<!--
function MM_jumpMenu(targ,selObj,restore){ //v3.0
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}
//-->



function elmLoop(){

var theForm = document.forms[0]
var stringholder = ""
var itemcounter = 0
   for(i=0;i<theForm.elements.length;i++){
          if(theForm.elements[i].type == "checkbox"){
                   if(theForm.elements[i].checked == 1) {
                          stringholder = stringholder + theForm.elements[i].value + ",";
                          itemcounter = itemcounter +1;
                   }
       		      else
    		      {
    
    		      }
     
		 }
         else
  		 {
  		 }
    }
    
    if (itemcounter>1 && itemcounter<5) {
 
    window.location = "/compare-products.asp?itemstocompare=" + stringholder;
    }
    else
    {
    alert("Please select more than 1 and less than 5 products to compare");
    }
} 
