function iniciarOnload() {
	oldfunctions = window.onload;
	if (typeof oldfunctions == "function") {
		window.onload = function() {
			oldfunctions();
			init('bm_segmento');
			init('bm_estilos_vida');
			document.Form1.consumo[0].checked = true;
			document.Form1.dllConsumo.selectedIndex = 0;
			document.Form1.idsegmento.value = 0;
			document.Form1.idEstilo.value = 0;
		}
	}
	else {
		window.onload = function() {
			init('bm_segmento');
			init('bm_estilos_vida');
			document.Form1.consumo[0].checked = true;
			document.Form1.dllConsumo.selectedIndex = 0;
			document.Form1.idsegmento.value = 0;
			document.Form1.idEstilo.value = 0;
		}
	}
}

function limpiar()
{
	init('bm_segmento');
	init('bm_estilos_vida');
}

function recargaCombo(pOrigen, pDestino, pOpcion, pCampoValor, pCampoTexto, pTextoSelecciona, pTextoNoRegisitros, pParametros, pTextoOpcion) {
	if (document.getElementById(pOrigen).value > 0) {
		oldfunctions = window.onload;
		if (typeof oldfunctions == "function") {
			window.onload = function() {
				oldfunctions();
				ajaxCombo(document.getElementById(pOrigen).value, pDestino, pOpcion, pCampoValor, pCampoTexto, pTextoSelecciona, pTextoNoRegisitros, pParametros, pTextoOpcion);
			}
		}
		else {
			window.onload = function() {
				ajaxCombo(document.getElementById(pOrigen).value, pDestino, pOpcion, pCampoValor, pCampoTexto, pTextoSelecciona, pTextoNoRegisitros, pParametros, pTextoOpcion);
			}
		}
	}
}