function MoveGalery(event)
{
	if(event.keyCode == 39 && next)
	{
		window.location = next;
		return true;
	}
	
	if(event.keyCode == 37 && previous)
	{
		window.location = previous;
		return true;
	}
}