//var useAjax = false;
var lastpage = -1;

function GallerySelect( n ) {
	e = document.getElementById( "photosize" );
	if( e ) {
		c = e.options[ e.selectedIndex ].value;
	}
	if( n == -1 ) {
		if( lastpage == -1 ) {
			n = 1;
		} else {
			n = lastpage;
		}
	}
	lastpage = n;
//	if( useAjax ) {
//		AjaxLoad( 'galleri.php?page=' + n + '&cat=' + c + "&contents=true" );
//	} else {
		location = 'galleri.php?page=' + n + '&cat=' + c;	// + "&contents=true";
//	}
}

function CategorySelect( n ) {
	if( n > 0 ) {
//		if( useAjax ) {
//			AjaxLoad( 'galleri.php?cat=' + n + "&contents=true" );
//		} else {
			location = 'galleri.php?cat=' + n;	// + "&contents=true";
//		}
	} else {
//		if( useAjax ) {
//			AjaxLoad( 'galleri.php?contents=true' );
//		} else {
			location = 'galleri.php';	//?contents=true';
//		}
	}
}

