function bindCakeUrl(formName) {
	var boundString = '';
	$(formName).getElements('[name^=data]').each(function(item, index){
		itemName = item.get('name');
		itemName = itemName.substring(itemName.lastIndexOf('[')+1,itemName.lastIndexOf(']'));
		boundString += '/'+itemName+':'+item.get('value');
	});
	return boundString;
}
function sendForm(formName) {
	window.location.href = $(formName).get('action')+bindCakeUrl(formName);
}