/*
 * Clase Cliente
 * 
 * Version: 	$Revision: 1.0 $
 * Author:  Antonio Hernández Ritoré 
 */
 
function Cliente(){
// 	Definicion de atributos
	this.nombre = null;
	this.apellido1 = null;
	this.apellido2 = null;	
	this.email = null;
	this.telefono = null;		
	this.direccion = null;
	this.localidad = null;
	this.cp = null;
	this.provincia = null;	
	this.pais = null;	
//	Definicion de metodos
}

