﻿// JScript File

function chang_cat_photo(){
    var c = document.getElementById("lst_cat").value;
    var s = document.getElementById("lst_saison").value;
    document.location.href="/photos/detail.aspx?cat="+c+"&p=0&saison=" + s;
}

function chang_saison_photo(){
    var s = document.getElementById("lst_saison").value;
    document.location.href="/photos/detail.aspx?saison="+s+"&p=0";
}

var AxSuppr_photo = {
	delay: 200,
	prepare: function() { 
		InputVar = new Array(id_photo);
	},
	call: proxies.AjaxFunc.DeletePhoto,
	finish: function (p) 
	{ 
		document.getElementById("ligne_"+id_photo).style.display = "none";
	},
	onException: ajax.alertException
}


function Suppr(i){
if(confirm("Etes vous sur de vouloir supprimer cette photo ?"))
    {
    id_photo = i;
    SoapMethod = "POST";
	ajax.Start(AxSuppr_photo);
	}
}