function serialize(frm)
{
	var retorno="", i,aux;
	for(i=0;i<frm.elements.length;i++)
	{
		aux = frm.elements[i];
		if(aux.type == "checkbox" && !aux.checked)
			continue;
		if(i!=0)
			retorno = retorno+'&';
	 	retorno=retorno+aux.name+'='+encodeURI(aux.value);
	}
	return retorno;
		
}

