
function calendario(text){
   action="?action="+text;
   var izq = (screen.width-330) / 2;
   var arr = (screen.height-140) / 2;
   referencia_ventana= window.open('calendar.php'+action,'ventana1','width=150, height=150,left='+ izq + ',top=' + arr +' scrollbars=no, menubar=no, location=no, resizable=yes');
}
function calendarioDos(text,text2){
   action="?action="+text+"&second_action="+text2;
   var izq = (screen.width-330) / 2;
   var arr = (screen.height-140) / 2;
   referencia_ventana= window.open('calendar.php'+action,'ventana1','width=150, height=150,left='+ izq + ',top=' + arr +' scrollbars=no, menubar=no, location=no, resizable=yes');
}
function deletecustomer(id){
	var valor=confirm("¿Seguro que deseas eliminar a este cliente?");
	if (valor==true){
		//alert(id);
		deleteCustomer(id);
	}
}
// elimina retornos de carro, tabulaciones y saltos de linea ocultos en un texto
function replaceAllCharacters(texto) {
	texto = texto.replace("\r","");
    texto = texto.replace("\n","");
    texto = texto.replace("\t","");
	return texto;
}