function editFrontPage()
{
     displayText('maincontent','modules.php?mod=adminfront');
     return false;
}

function updateFrontPage(form)
{
     var url='modules.php?mod=adminfront&req=update'+
          '&msg_banner='+encodeURIComponent(form.msg_banner.value)+
          '&msg_left='+encodeURIComponent(form.msg_left.value)+
          '&msg_right='+encodeURIComponent(form.msg_right.value)+
          '&product='+encodeURIComponent(form.product.value)+
          '&recipe='+encodeURIComponent(form.recipe.value);

     ret=serverFunction(url);
     displayText('maincontent','modules.php?mod=ajax&req=homepage');
     return false;
}
