// ajaxPhotoIndex

function ajPhIndex(URL)
{
    $("bgPhIndex").innerHTML = '<img src="images/loading.gif" alt="loading" width="16" height="16" style="margin-top:115px;margin-bottom:0px;width:16px;height:16px;" />';
    
        new Ajax.Request(URL,
                                    { method : 'get',
                                       encoding : 'UTF-8',
									   parameters : "cache=" + (new Date()).getTime(),
                                       onSuccess : success,
                                       onFailure : failure });
    
    return false;
}

function success(obj)
{
    $("bgPhIndex").innerHTML = obj.responseText;
}

function failure(obj)
{
    $("bgPhIndex").innerHTML = 'File Not Found';
}