//------------------------------------------------------------------------------
// Class:  Gallery
//------------------------------------------------------------------------------
// Author:  CL
// Date:  2008/01/30
// Description:  This class defines the functions used by the Gallery section.
//------------------------------------------------------------------------------
//------------------------------------------------------------------------------
function Gallery()
{	
	//--------------------------------------------------------------------------
	// Methods:
	this.changeView = changeView;
	this.changePerPage = changePerPage;
	//--------------------------------------------------------------------------
	
	function changeView(URL)
	{
		//window.location = URL + "&v=" + document.getElementById("intSortType").value;
		window.location = URL;
	}

	//--------------------------------------------------------------------------
	
	function changePerPage(URL)
	{
		//window.location = URL + "&pp=" + document.getElementById("intAlbumPerPage").value;
		window.location = URL;
	}
}

// Create Object
oGallery = new Gallery();

//--------------------------------------------------------------------------