function Count(Contador, Texto, Limite){
	if (Texto.value.length > Limite) {
		alert("Disculpa, la cantidad de caracteres permitida es sólo de " + Limite + ".");
		Texto.value = Texto.value.substring(0, Limite);
	}
	else {
		Contador.value = Limite - Texto.value.length;
	}
}

function Confirmar(){
	var Do = window.confirm("¿ Confirma la operación realizada ?");
	return Do;	
}

function ShowHide(what) {
	what.style.display=(what.style.display=='none')?'':'none';
}

function ChgColor(theObj, color) {
	theObj.style.backgroundColor = color;
}

function ShowImage(Imagen, Pie) {
	//var Features = "dialogHeight: " + Height + "px; dialogWidth: " + Width + "px; center: yes; resizable: no; status: no;"
	var Features = "center: yes; resizable: yes; status: yes;";
	window.showModalDialog('Imagen.aspx?Imagen=' + Imagen + '&Pie=' + Pie, Features);
}