var JSPage = Class.create(); 

JSPage.prototype = { 
	initialize : function() {
		Object.extend(window, this);
	},
	
	guardar : function(any, sexe, professio, estudis, cara, cabells, ulleres, sabates, vestitSuperior, vestitInferior, bata, basto, esDedica, necessita, humanitat, perill, sociable, liAgrada){
		new Ajax.Request("guardarDades.php?any=" + any + "&sexe=" + sexe + "&professio=" + professio + "&estudis=" + estudis + "&cara=" + cara + "&cabells=" + cabells + "&ulleres=" + ulleres + "&sabates=" + sabates + "&vestitSuperior=" + vestitSuperior + "&vestitInferior=" + vestitInferior + "&bata=" + bata + "&basto=" + basto + "&esDedica=" + esDedica + "&necessita=" + necessita + "&humanitat=" + humanitat + "&perill=" + perill + "&sociable=" + sociable + "&liAgrada=" + liAgrada)
	}
}

Event.observe(window,"load",function(){
	jsPage = new JSPage();
});
