<!--

function move(index)
{
	if (index != 0)
	{
		var Strings = new Array(2);
	   var URL;

	   Strings = document.URL.split('#');
	   URL = Strings[0];
		window.location.href = URL + '#' + index;	
	}
}
// -->

