No Javascript required. In a form (follow the guy above me's link) you can use the <form> tag, and set the following attributes:
method - can equal "post" or "get"
If the attribute method equals post, the information in the form, like whether those two checkboxes are checked or not, will be hidden from the user. If set to get, then the information in the form will be visible to the user in the address bar. So the code is:
method="post" or method="get"
action - where to go to after the user presses the button.
Once the user presses a button, normally called a submit button, the button makes the user go to another page. Set action to the page you want to go to. So the code is:
action="webpage.html"
After the form tag and it's attributes, add the checkboxes, like you suggested, or other stuff. You can see an example at the guy above me's link. Now add a submit button. You can do so by creating an <input> tag, with the type attribute set to "submit". Remember also to set the value attribute (to whatever words you want on the button) too. Once the user presses this button, it will redirect the user to the page that was set with the action attribute on the form tag. If the form action was set to "get" you can just take what the user submitted out of the address bar, but if you set it to "post", only server side scripts can get it.
Now add a </form> tag.
Example code:
<form method="get" action="webpage.html">
(insert checkboxes, textboxes and radiobuttons here)
<input type="submit" value="Done!"></input>
</form>
In this code, the <form> tag has method set to "get" meaning that the information, like weather some checkboxes were checked, will be in the address bar when the user presses a submit button. The user changes textboxes, checkboxes and stuff, and then, presses the submit button which says "Done!". When the user presses that, the user will be at "webpage.html" on your site and the information will appear in the address bar after the address in a code (because the method was set to "get" in the form tag). You can take that code in the address bar using Javascript and use it wherever you like, or if you want to get advanced, use PHP.
Forms are great for many uses. I'm sure you will find some!