<!--
function checkCheckBoxes(theForm) {
	if ( theForm.includeNew.checked == false && theForm.includeUsed.checked == false) {
		alert (\'You didn\'t choose any of the checkboxes!\');
		return false;
	} else { 	
		return true;
	}
}
//-->

