/*
 ** Copyright 2008 Visite Virtuelle Immo
 */

function defaultErrorHandle(resp)
{
  alert("Erreure ! : " + resp.status + " ( " + resp.statusText + ")");
}

function photoFrame_getPhotos(houseId, pos)
{
  new Ajax.Request("/biens/ajax_get_floors/" + houseId + "/" + pos,
                   {asynchronous:true,
                       method:'post',
		       onSuccess:handle_photoFrame_getPhotos,
                       onFailure:defaultErrorHandle
                       });
}

function handle_photoFrame_getPhotos(resp)
{
  document.getElementById("annoncePhotoFrame_roomBox").innerHTML = resp.responseText;
}

function photoFrame_changeShowPhoto(photoId, houseId)
{
  new Ajax.Request("/biens/ajax_change_photo/" + houseId + "/" + photoId,
                   {asynchronous:true,
                       method:'post',
		       onSuccess:handle_photoFrame_changeShowPhoto,
                       onFailure:defaultErrorHandle
                       });
}

function handle_photoFrame_changeShowPhoto(resp)
{
  document.getElementById("annoncePhotoFrame_diapo").innerHTML = resp.responseText;
}
