Photos_class = function() {};
Object.extend(Photos_class.prototype, Object.extend(new AjaxPro.AjaxClass(), {
	UpdatePhoto: function(strPhotoId, strPhotoDescription, strPhotoTags, strOldTags, strAlbumOwner) {
		return this.invoke("UpdatePhoto", {"strPhotoId":strPhotoId, "strPhotoDescription":strPhotoDescription, "strPhotoTags":strPhotoTags, "strOldTags":strOldTags, "strAlbumOwner":strAlbumOwner}, this.UpdatePhoto.getArguments().slice(5));
	},
	GetPhotoInfo: function(strAlbumID, strPhotoID) {
		return this.invoke("GetPhotoInfo", {"strAlbumID":strAlbumID, "strPhotoID":strPhotoID}, this.GetPhotoInfo.getArguments().slice(2));
	},
	Rating: function(CurrentRating, CurrentVoteCount, strPhotoID, strRatingCount) {
		return this.invoke("Rating", {"CurrentRating":CurrentRating, "CurrentVoteCount":CurrentVoteCount, "strPhotoID":strPhotoID, "strRatingCount":strRatingCount}, this.Rating.getArguments().slice(4));
	},
	DelPhoto: function(strPhotoID, strAlbumID, albumOwner) {
		return this.invoke("DelPhoto", {"strPhotoID":strPhotoID, "strAlbumID":strAlbumID, "albumOwner":albumOwner}, this.DelPhoto.getArguments().slice(3));
	},
	url: '/ajaxpro/SNET.Network.Album.Photo,NetWork.ashx'
}));
Photos = new Photos_class();

