// movieStat

function movieStat(id)
{
   new Ajax.Request('/movies_stats/movie/'+id+'/'+(new Date()).getTime(), {method: 'get'});
}

// wysylanie formularza
function submitForm(id)
{
  new Ajax.Updater('form', '/comments/form/'+id, { method: 'post',parameters: $('ajaxForm').serialize(true), evalScripts:true });
}
// pobieranie formularza
function getForm(id)
{
   $('form').innerHTML = 'Ładuje Formularz... Proszę czekać';
   $('write_comment').innerHTML = '';
   new Ajax.Updater('form', '/comments/form/'+id,  {method: 'get'});
  
} 
