if (typeof window.RTVE === "undefined") 
	{
	window.RTVE = {};
 	}//if
 
RTVE.refresh = 
{

i_idIntervalo: null,
					
f_recargar:
	function
		(							
		)
	{
	document.location.reload();
	},
							
f_cancelarRecarga:
	function
		(
		o_event
		)
	{
	var o_this = o_event.data;
	window.clearInterval(o_this.i_idIntervalo);
	},				

f_inicializar:
	function
		(
		i_milisegundos
		)
	{	
	this.i_idIntervalo = window.setInterval(this.f_recargar, i_milisegundos);	
	var s_controles = "#form_comments input[type='text'], #form_comments textarea";
	//var s_controles = "#COMMENT_NAME, #COMMENT_MAIL, #COMMENT_URL, #antispam, #comentarios";
	var s_eventos = "change keyup";
	$(s_controles).bind(s_eventos, this, this.f_cancelarRecarga);	
	}
	
}//RTVE.refresh