// Display the new page with ajax
function displayPage(Id)
{

    var id = null;
    if($(page_id) != null){
        id = $F('page_id');
    }
    if(typeof(Id) != 'undefined'){
        id = Id;
    }
    ShowStatus('show', ajaxget_opt);
    var url = root_url + 'page.html';
    var param = 'do=ajaxget&id='+id+'&rand='+Math.random();
    var option	={
        method:'get',
        evalScripts: true,
        parameters: param,
        onSuccess:function(transport){
            ShowStatus('hide', '');
            setElement('content_inside','show');
        },
        onFailure:function(){
            ShowStatus('show', ajaxget_busy);
        }
    }
    var myAjax	= new Ajax.Updater ({success:'content_inside'},url, option);
}
