function fill_art()
{
    new Ajax.Request('art.php',{method:'post', parameters: {width: $("content").getWidth(), height: $("content").getHeight()}, onSuccess: function(transport) {$("content").innerHTML = transport.responseText;}, onFailure: function() {alert('Ajax error in fill_art()')}});
}


