function reloadPage(theURL) { //v2.0var strRegion = "";
for (var i=0; i < document.regForm.cbRegion.length; i++)
   {
   if (document.regForm.cbRegion[i].checked)
      {
    strRegion = strRegion + document.regForm.cbRegion[i].value + ',';
      }
   }  strUrl=theURL +'&regId=' +strRegion +'&startId=2' ;   //alert(strRegion);  document.location = strUrl;}
