<!--

function confirmDelete() {
	var agree=confirm("Are you sure you want to DELETE this record?");
	
	if (agree)
	 	return true ;
	else
		return false ;
}

function checkForm(TheForm) {
  // url, title, description
  if (TheForm.url.value.length == 0) {
   TheForm.url.value = prompt("You forgot to enter the link URL for addition!");
   return false;
  }
  if (TheForm.title.value.length == 0) {
   TheForm.title.value = prompt("You forgot to enter the link title for addition!");
   return false;
  }
  if (TheForm.description.value.length == 0) {
   TheForm.description.value = prompt("You forgot to enter the link description for addition!");
   return false;
  }
  if (TheForm.category.value.length == 0) {
   TheForm.category.value = alert("You forgot to enter the category!");
   return false;
  }
  return true;
}// end function checkalForm
// -->
