function showFrom(){
	param = '';
	new Ajax.Updater($('recenzieContainer'), componentPath,{
			method:'POST',
			parameters: param,
			onComplete: function(transport){
				$('recenzieContainer').style.display = '';

				attachReviewFormEvent();
			}
		}
	);
}

function sendReviewFormEvent(form){

//	form.request({
//		onSuccess: function(t) {
//            $('recenzieContainer').update(t.responseText);
//        }
//    });

//	return false;
}
