
// hide parts of the page when printing
function printhide(thecheckbox){

	if(thecheckbox.checked ){
		//show it
		
		$(thecheckbox.value).removeClass("printhide");
	} else {
		$(thecheckbox.value).addClass("printhide");
	}

}
