// basefunc.js

var isIE4 = false;


// highlighting and linking code

function mOvr(src){
  if (!src.contains(event.fromElement)) src.style.cursor = 'hand'; src.bgColor = "#274765";
}

function mOut(src) {
  if (!src.contains(event.toElement))src.style.cursor = 'default';src.bgColor = "#4078AC";
}

function mClk(src) {
  if(event.srcElement.tagName=='TD') src.children.tags('A')[0].click();
}

// prompt for confirmation of deletions/other actions
function confirm_action(prompt) {

	if (confirm (prompt)) {
		return true;
	}
	else {
		return false;
	}
}

