var Max_CheckBoxes = 6;

function SearchSetAllCheckBoxes() { for (var i=1; i<=Max_CheckBoxes; i++) document.getElementById("cb"+i).checked=true; }

/*function SearchBegin2() {}

function SearchBegin() {
		 var s = document.getElementById("searchtext").value;
		 var SearchUrl="http://rnmc.bdev.2sun.ru/default.asp?trID=221&text="+s;
		 for (var i=1; i<=Max_CheckBoxes; i++) {
			var cb = document.getElementById("cb"+i).checked;
			SearchUrl += "&cb"+i+"="+(cb ? 1:0);
		 }
		 SearchUrl += "&n=0";
		 
//		 window.location = "www.google.com";
///		 window.document.location.href = "http://www.google.com"; ////"/default.asp?trID=221&text=8989";
///		 window.location.href = "/default.asp?trID=221&text=8989";
//		 document.location.href = "/default.asp?trID=221&text=8989"; //SearchUrl;
}
*/