	/*var timeCrono; 
	var hor = 0;
	var min = 0;
	var seg = 0;
	var startTime = null;
	
	function ReStart() {
		hor = 0;
		min = 0;
		seg = 0;
		startTime = null;
	}
	
	function StartCrono() {
		if (startTime == null){
			startTime = new Date();
		}

		start = startTime.getSeconds();
		
		if (seg + 1 > 59) { 
			min+= 1 ;
		}
		if (min > 59) {
			min = 0;
			hor+= 1;
		}
		var time = new Date(); 
		if (time.getSeconds() >= start) {
			seg = time.getSeconds() - start;
		} 
		else {
			seg = 60 + (time.getSeconds() - start);
		}
		timeCrono= (hor < 10) ? "0" + hor : hor;
		timeCrono+= ((min < 10) ? ":0" : ":") + min;
		timeCrono+= ((seg < 10) ? ":0" : ":") + seg;

		relog = document.getElementById('relogio');
		if (relog != null)
		relog.document.crono.face.value = timeCrono;
		setTimeout("StartCrono()", 1000);
	}*/





/* ----------------------------------------------------------------------------
  sub-Rotina: 
  objetivo  : 
  par?metros: 
  retorno   : 
  autor(a)  : S?lvio Costa
  data      : 
  situa??o  : conclu?da
  window.open("processando.jsp", "", "menubar=no, resizable=no, scrollbars=no, status=no, toolbar=no, left=300, top=200, location=0, directories=0, width=500, height=250, titlebar=no")
----------------------------------------------------------------------------*/


function processando() {
	mostra("divprocess");
	oculta("divparam");
	return true;
}
