<!--
var left = 300;
function charsLeft(txt){
	if(txt.value.length > 300){
		txt.value = txt.value.substring(0, 300);
		return false;
	}
	document.frmLink.txtCharsLeft.value = (300 - txt.value.length);
}
function cD(entry, lnk){
	if(typeof(window.opera) != 'undefined'){
		return true;
	}else{
		var confirmation = confirm("Are you sure you want to Delete? \n\""+entry+'"');
		if(confirmation)lnk.href += '&confirmed=1';
	}
	return confirmation;
}
function cAU(entry, lnk){
	if(typeof(window.opera) != 'undefined'){
		return true;
	}else{
		var confirmation = confirm("Are you sure you want to Approve/Unapprove? \n\""+entry+'"');
		if(confirmation)lnk.href += '&confirmed=1';
	}
	return confirmation;
}
//-->
