function loadKeyWordResults(formTX, dBox, rBox) {
// 	if (dBox) {
// 		alert ("dBox=true");
// 	}
// 	if (!dBox) {
// 		alert ("dBox=false");
// 	}
	var url="ccKeyWordResults.php";
	url=url+"?tx="+formTX;
	url=url+"&db="+dBox;
	url=url+"&rb="+rBox;
  location=url;
}
function SelectAll(id) {
    document.getElementById(id).focus();
    document.getElementById(id).select();
}