//travel agencies

function checkUncheckAll(theElement) {
     var theForm = theElement.form, z = 0;
	 for(z=0; z<theForm.length;z++){
      if(theForm[z].type == 'checkbox' && (theForm[z].name == 'booking' || theForm[z].name == 'revenue_building' || theForm[z].name == 'cost_reducing' || theForm[z].name == 'customer_service' || theForm[z].name == 'back_office' || theForm[z].name == 'web_developer' )){
	  theForm[z].checked = theElement.checked;
	  }
     }
    }

function UncheckView() {
	var view = document.getElementById('view_all');
	view.checked=false;
}

