function confirmSubmit(strAsk) {
	return (confirm(strAsk))
}

function hilite(obj) {
	obj.style.background = '#FFC';
}

function delite(obj) {
	obj.style.background = '#f0f0f0;';
}

function highlightRow(InputNode) {
    var el = InputNode;
    while (el.nodeType != 1 || el.nodeName.toLowerCase() != 'tr')
           el = el.parentNode;
    el.style.backgroundColor = (InputNode.checked) ? '#FFCC00' : '';
}
