﻿function onUpdate(){
	window.document.getElementById("imgstatus").src="/com/cfc/appstyle/lamplight.gif";
	window.document.getElementById("lblstatus").innerHTML="Updating data...";
}
function onSave(){
	window.document.getElementById("imgstatus").src="/com/cfc/appstyle/lamplight.gif";
	window.document.getElementById("lblstatus").innerHTML="Recording data to the database...";
}
function onSearch(){
	window.document.getElementById("imgstatus").src="/com/cfc/appstyle/lamplight.gif";
	window.document.getElementById("lblstatus").innerHTML="Retrieving data...";			
}
function onSort(){
	var statusdiv=window.document.getElementById('divstatus');
	if (statusdiv != undefined){
		statusdiv.innerHTML='<DIV style="font-size:10px; fontFamily:Verdana; padding-left:5px;"><IMG src="/com/cfc/appstyle/lamplight.gif">&nbsp; Sorting data...</DIV>';
	}
}
function onPrevNext(){
	var statusdiv=window.document.getElementById('divstatus');
	if (statusdiv != undefined){
		statusdiv.innerHTML='<DIV style="font-size:10px; fontFamily:Verdana; padding-left:5px;"><IMG src="/com/cfc/appstyle/lamplight.gif" height="8" width="8">&nbsp;Retrieving data...</DIV>';
	}
}