/*
	----------------------------------------
	flipPage
	-----
	
	----------------------------------------
*/
	function flipPage (caller, startpage, params)
	{
		pg = caller.options[caller.selectedIndex].value;
		url = caller.form.action + '?' + startpage + '=' + pg;
		if (params)
			url += '&' + params;
		document.location = url;
	}


