function Carrito(){}

Carrito.prototype.abrirRegistrarCliente = function(res){
    abrirPopUpHTML(res.responseText);
    YUI.VALIDATION.init();

}
Carrito.prototype.falloConsulta = function(){
    simpleMensaje('No se puedo abrir');
}
window.onload=function(){
    Carrito();
}   
