// JavaScript Document
<!--
function discover() {
	if (document.form1.discover_cat.checked == true) {
		 	(document.form1.discover[0].checked == true);
	 }
}
function connect() {
	if (document.form1.connect_cat.checked == true) {
		 	(document.form1.connect_1.checked == true);
		 	(document.form1.connect_2.checked == true);
		 	(document.form1.connect_3.checked == true);
		 	(document.form1.connect_4.checked == true);
		 	(document.form1.connect_5.checked == true);
	 }
}
function action() {
	if (document.form1.action_cat.checked == true) {
		 	(document.form1.action_1.checked == true);
		 	(document.form1.action_2.checked == true);
		 	(document.form1.action_3.checked == true);
		 	(document.form1.action_4.checked == true);
		 	(document.form1.action_5.checked == true);
	 }
}
-->