function valideForm(formName, calqueID, url)
	{

	s = $(formName).serialize();
	$(calqueID).empty();
//	$(calqueID).post(url,s);
	$(calqueID).load(url+"?"+s);

	return false;

	}



