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;
//	Event.observe('submitReviewForm', 'submit', function(event) {
//
//	    Event.stop(event); // stop the form from submitting
//	});
}