<!-- 
function launchFileManager(nameCtl, idCtl){
	popWin('/FileManager/?nameCtl='+nameCtl+'&idCtl='+idCtl+'','fileWin',460,580,'scrollbars=1,resizeable=0,status=1');
}
function removeFileReference(nameCtl, idCtl){
	var d = document.forms[0];
	d[nameCtl].value = "None";
	d[idCtl].value = 0;
	alert("The file reference has been removed.\r\rBe sure to click \"Update\" to save any changes.");
}
function notifyReadOnly(){
	alert("This field is protected.\r\rTo modify, click the Edit or Remove buttons.");
}
//-->