October 30, 2004

AcuteFinder 1.1 Free Download - Softpedia

AcuteFinder 1.1 Free Download - Softpedia

Will find duplicate files with different names. Great for making room on hard drives.

October 28, 2004

Favelets

Favelets

Bookmarks that help

October 27, 2004

Fancy checkbox validation javascript

<!-- javascript function
function chx(myForm)
{
var sendit = false;
  for (var i=0;i < myForm.length;i++) {
    fldObj = myForm.elements[i];
    if (fldObj.type == 'checkbox') {
      if (fldObj.checked == true) {
        sendit = true;
      }
    }
  }
  if (sendit == true) {
    return true;
  } else {
    alert('Error Msg.');
    return false;
  }
}
--->

<!-- code for form -->
<form onSubmit="return chx(this);">